{"info":{"_postman_id":"be508df6-609a-471d-a539-5718d9f1125f","name":"Exivity API v2 (Beta)","description":"<html><head></head><body><img src=\"https://content.pstmn.io/9944564b-820d-4d7e-a101-d4371e646a52/RXhpdml0eUJldGFMb2dvLnBuZw==\">\n\n<p><strong>This documentation pertains to the beta release of API v2.</strong></p>\n<p><strong>We aim to provide clear and comprehensive information, yet we invite your feedback to further refine the documentation. We welcome any suggestions for improvement, bug reports, or additional comments to enhance the overall utility and accuracy.</strong></p>\n<p><strong>Please note that as this is a beta version, some endpoints are subject to potential changes. We will promptly document all modifications in this section and include them in our release notes.</strong></p>\n<hr>\n<p>This is the Exivity API specification, and should be used as a reference guide for creating requests and parsing responses. For a more general introduction to Exivity, please refer to our <a href=\"https://\">documentation</a>.</p>\n<p>Download latest <a href=\"https://\">Postman collection</a> from our <a href=\"https://\">GitHub repository</a>.</p>\n<h1 id=\"overview\">Overview</h1>\n<ol>\n<li>This API uses principles and constraints of <a href=\"https://\">REST APIs</a>.</li>\n<li>You need a valid API token for requests.</li>\n<li>The API has rate limiting.</li>\n<li>Most resource endpoints listen to and responds with data structures as defined by the <a href=\"https://\">JSON:API standard</a>. You'll recognise these endpoints when the documentation lists the following headers:</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/vnd.api+json\nAccept: application/vnd.api+json\n\n</code></pre><h1 id=\"authentication\">Authentication</h1>\n<p>The default method of authentication against the API is done through a stateless <a href=\"https://\">JWT token</a>.</p>\n<p>It is also possible to authenticate the API via LDAP or SAML, if your administrator has set up access to either of these systems.</p>\n<h4 id=\"how-to-use-the-token\"><strong>How to use the token</strong></h4>\n<p>The default method of authentication against the API is done through a stateless <a href=\"https://\">JWT token</a>, sent along as an Authentication header. To obtain a token, a request to the API endpoint <code>/v1/auth/token</code> should be made with the user credentials.</p>\n<p>Once a token has been generated, please include it in the headers of other requests to allow authorization.</p>\n<p><em>Example:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer [token]\n\n</code></pre><p>The JWT token will expire after <em>4 hours</em> for security reasons. This value is configurable. Please see <a href=\"https://\">/configuration</a> or <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#authentication-token\">https://docs.exivity.com/architecture%20concepts/glossary/#authentication-token</a> for more information.</p>\n<h1 id=\"the-resource-object\">The Resource Object</h1>\n<p>Each section of the API Reference contains an object, detailing the different attributes the endpoint accepts.</p>\n<p><em>Example:</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required, unique name for service category. Max 255 chars.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"types\">Types</h2>\n<p>The follow types appear in this document:</p>\n<ul>\n<li><code>integer</code></li>\n<li><code>float</code></li>\n<li><code>double</code></li>\n<li><code>string</code></li>\n<li><code>array</code></li>\n<li><code>enum</code>- this will be followed by an array of possible values. e.g <em>enum</em>(<code>charge</code>,<code>quantity</code>)</li>\n<li><code>date</code></li>\n<li><code>datetime</code></li>\n<li><code>time</code></li>\n</ul>\n<p>Date, datetime and time follow the ISO 8601 standard</p>\n<ul>\n<li><code>Y</code> - A full numeric representation of a year, 4 digits e.g, <code>1996</code>, <code>2021</code></li>\n<li><code>m</code> - Numeric representation of a month, with leading zeros e.g. <code>01</code> through <code>12</code></li>\n<li><code>d</code> - Day of the month, 2 digits with leading zeros e.g. <code>01</code> to <code>31</code></li>\n<li><code>H</code> - 24-hour format of an hour with leading zeros e.g. <code>00</code> to <code>23</code></li>\n<li><code>i</code> - Minutes with leading zeros e.g. <code>00</code> to <code>59</code></li>\n<li><code>s</code> - Seconds with leading zeros e.g. <code>00</code> to <code>59</code></li>\n<li><code>Y-m-d\\TH:i:s\\Z</code> - ISO 8601 datetime e.g. <code>2022-05-17T13:35:25Z</code></li>\n</ul>\n<p><em>Examples:</em></p>\n<ul>\n<li>Y-m = <code>2017-01</code></li>\n</ul>\n<h3 id=\"nullable-values\">Nullable values</h3>\n<p>Nullable values will have a question mark listed after the type. Examples: <code>integer?</code>, <code>string?</code></p>\n<h2 id=\"mutability\">Mutability</h2>\n<p>This column states whether a value is changable.</p>\n<ul>\n<li>📝 editable - These values can be changed</li>\n<li>🔏 immutable - Once set, these values cannot be changed</li>\n<li>👁 read-only - This values are set internal by the system and the user cannot change them</li>\n</ul>\n<h2 id=\"relationships\">Relationships</h2>\n<p>It is possible to include related relationships with a give resource request (see Working with the API -&gt; Include Related Resources for how to do this). The possible relationships are listed under the resource object.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>hasOne</td>\n<td>adjustments</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>hasMany</td>\n<td>services</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>hasOne</td>\n<td>usergroup</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"required\">Required</h3>\n<p>Some resources require a relationship to be created e.g. creating a new user required a usergroup. Any required relationships will be give in the <strong>Add</strong> example of the resource.</p>\n<h1 id=\"working-with-the-api\">Working with the API</h1>\n<h2 id=\"placeholders\">Placeholders</h2>\n<p>Different variables have double curly brackets around them (<code>{{</code>, <code>}}</code>). These used for placeholders in this documentation. When working with the API, these placeholders should be replaced with real values. Examples include:</p>\n<p><code>{{base_url}}</code> - replace this with your API's url</p>\n<p><code>{{workflow_id}}</code>, <code>{{report_id}}</code>, <code>{{account_id}}</code>, etc - these are placeholders for a specific ID for an object.</p>\n<h2 id=\"query-string-parameters\">Query String Parameters</h2>\n<p>Some requests using the JSON:API format accept additional query string parameters.</p>\n<h3 id=\"filtering\">Filtering</h3>\n<p>To filter results, use the <code>filter[attribute]</code> query string parameter.</p>\n<p>The following formats are supported for filtering results:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Token</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>^</code></td>\n<td>Field starts with</td>\n<td><code>filter[name]=^John</code></td>\n</tr>\n<tr>\n<td><code>$</code></td>\n<td>Field ends with</td>\n<td><code>filter[name]=$Smith</code></td>\n</tr>\n<tr>\n<td><code>~</code></td>\n<td>Field contains</td>\n<td><code>filter[favorite_cheese]=~cheddar</code></td>\n</tr>\n<tr>\n<td><code>&lt;</code></td>\n<td>Field is less than</td>\n<td><code>filter[lifetime_value]=&lt;50</code></td>\n</tr>\n<tr>\n<td><code>&gt;</code></td>\n<td>Field is greater than</td>\n<td><code>filter[lifetime_value]=&gt;50</code></td>\n</tr>\n<tr>\n<td><code>&gt;=</code></td>\n<td>Field is greater than or equals</td>\n<td><code>filter[lifetime_value]=&gt;=50</code></td>\n</tr>\n<tr>\n<td><code>&lt;=</code></td>\n<td>Field is less than or equals</td>\n<td><code>filter[lifetime_value]=&lt;=50</code></td>\n</tr>\n<tr>\n<td><code>=</code></td>\n<td>Field is equal to</td>\n<td><code>filter[username]==Specific Username</code></td>\n</tr>\n<tr>\n<td><code>!=</code></td>\n<td>Field is not equal to</td>\n<td><code>filter[username]=!=common username</code></td>\n</tr>\n<tr>\n<td><code>[...]</code></td>\n<td>Field is one or more of</td>\n<td><code>filter[id]=[1,5,10]</code></td>\n</tr>\n<tr>\n<td><code>![...]</code></td>\n<td>Field is not one of</td>\n<td><code>filter[id]=![1,5,10]</code></td>\n</tr>\n<tr>\n<td><code>{...,...}</code></td>\n<td>Between exclusive (e.g. 2 up to 99)</td>\n<td><code>filter[id]={1,100}</code></td>\n</tr>\n<tr>\n<td><code>={...,...}</code></td>\n<td>Between inclusive (e.g. 1 up to 100)</td>\n<td><code>filter[id]=={1,100}</code></td>\n</tr>\n<tr>\n<td><code>NULL</code></td>\n<td>Field is null</td>\n<td><code>filter[address]=NULL</code></td>\n</tr>\n<tr>\n<td><code>NOT_NULL</code></td>\n<td>Field is not null</td>\n<td><code>filter[email]=NOT_NULL</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><em>Example - get accounts that start with W:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /accounts?filter[name]=^W\n\n</code></pre><h4 id=\"multiple-filters\">Multiple filters</h4>\n<p>The filter parameter can occur multiple times in a request to filter by multiple fields.</p>\n<p><em>Example - get accounts that start with W and level is set to one:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /accounts?filter[name]=^W&amp;filter[level]==1\n\n</code></pre><h4 id=\"related-entities-filters\">Related entities filters</h4>\n<p>A filter can also use related entities (which don't have to be included in the request with the <code>include</code> parameter).</p>\n<p><em>Example - get users with MANAGE_USERS permission, and an email address ending with \"example.com\":</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /user?filter[usergroup.permissions]=~MANAGE_USERS&amp;filter[email_address]=$example.com\n\n</code></pre><h3 id=\"pagination\">Pagination</h3>\n<p>When making requests to endpoints which can return more than one entity, results are paginated. The number of results per page and the requested page can be adjusted with the <code>page[limit]</code> and <code>page[offset]</code> query string parameters.</p>\n<p><em>Example:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /user?page[limit]=50&amp;page[offset]=2\n\n</code></pre><p>When the page limit is set to <code>-1</code>, all results are returned.</p>\n<p>The <code>links</code> element in the JSON response contains references to URLs which can be used to navigate the resultset.</p>\n<p>The <code>meta</code> element in the JSON response contains a reference to the total number of items in the resultset.</p>\n<h3 id=\"sorting\">Sorting</h3>\n<p>It is possible to sort results by using the <code>sort</code> query string parameter. A descending sort order can be requested by prefixing a hyphen (U+002D).</p>\n<p><em>Example:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /user?sort=-username\n\n</code></pre><h3 id=\"include-related-resources\">Include Related Resources</h3>\n<p>Inclusion of related resources in the response can be requested with the <code>include</code> query string parameter. Multiple entities can be specified by separating them with a comma (U+002C). Each endpoint definition specifies which includes can be requested.</p>\n<p><em>Examples:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /user?include=usergroup,accounts\nGET /user/[id]?include=usergroup,accounts\n\n</code></pre><h3 id=\"fetching-relationships\">Fetching relationships</h3>\n<p>It is also possible to fetch relationship data to a single resource using a separate endpoint. Relationships data on resources can be <a href=\"https://\">queried</a> and <a href=\"https://\">modified</a> by using the <code>/[resource]/[id]/relationships/[relation]</code> endpoint structure.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /user/[id]/usergroup\n\n</code></pre><h1 id=\"atomic-operations\">Atomic Operations</h1>\n<p>Many endpoint support Atomic Operations. This provides a means to perform multiple “operations” in a linear and atomic manner.</p>\n<p>At the top of all endpoints, it states whether or not it supports atomic operations:</p>\n<ul>\n<li>Atomic support: ✔️</li>\n<li>Atomic support:❌</li>\n</ul>\n<p>Please read the <a href=\"https://jsonapi.org/ext/atomic/\">JSON:API Atomic Operations</a> documentation to understand how this works.</p>\n<p><strong>Example</strong></p>\n<p>Add a workflow and a workflow step in a single request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"atomic:operations\": [\n        {\n            \"op\": \"add\",\n            \"data\": {\n                \"type\": \"workflow\",\n                \"lid\": \"foo\",\n                \"attributes\": {\n                    \"name\": \"Atomic workflow\",\n                    \"description\": \"My new atomic workflow\"\n                }\n            }\n        },\n        {\n            \"op\": \"add\",\n            \"data\": {\n                \"type\": \"workflowstep\",\n                \"lid\": \"bar\",\n                \"attributes\": {\n                    \"type\": \"execute\",\n                    \"timeout\": 600,\n                    \"options\": {\n                        \"command\": \"echo \\\"testing\\\"\"\n                    }\n                },\n                \"relationships\": {\n                    \"workflow\": {\n                        \"data\": {\n                            \"type\": \"workflow\",\n                            \"lid\": \"foo\"\n                        }\n                    }\n                }\n            }\n        }\n    ]\n}\n\n</code></pre>\n<p>All atomic request must be submitted throught the atomic endpoint:</p>\n<p><code>POST {{base_url}}/v2/</code></p>\n<p>See <a href=\"#d00d58da-6562-45db-bcb1-917dd57e6fb5\">General/Json API atomic operation</a> for more examples.</p>\n<h1 id=\"error-responses\">Error responses</h1>\n<p>Errors are returned as a JSON object, following the <a href=\"https://\">JSON:API error standard</a>. We use HTTP error responses in the status field, to indicate whether the request was a success (<code>2xx</code>) or a failure(<code>4xx</code>, <code>5xx</code>).</p>\n<p><em>Example:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"errors\": [\n    {\n      \"status\": \"422\",\n      \"title\":  \"Attribute validation error\",\n      \"detail\": \"Password must contain at least 8 characters.\"\n    }\n  ]\n}\n\n</code></pre>\n<p>Possible response codes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>400 Bad request</code></td>\n<td>Something in the request is missing or invalid</td>\n</tr>\n<tr>\n<td><code>401 Unauthorized</code></td>\n<td>JWT token is missing or invalid</td>\n</tr>\n<tr>\n<td><code>403 Forbidden</code></td>\n<td>Missing required permission for this operation</td>\n</tr>\n<tr>\n<td><code>404 Not found</code></td>\n<td>Entity can't be found</td>\n</tr>\n<tr>\n<td><code>409 Conflict</code></td>\n<td>Entity type or id doesn't match endpoint</td>\n</tr>\n<tr>\n<td><code>422 Unprocessable Entity</code></td>\n<td>Parameters validation error</td>\n</tr>\n<tr>\n<td><code>503 Service Unavailable</code></td>\n<td>Rate lime exceeded</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"authentication-error-response\">Authentication error response</h2>\n<p>If an authorization token is missing, expired or malformed, an error response will be returned. These errors will always have a <code>401 Unauthorised</code> status.</p>\n<p><em>Example:</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"errors\": [\n        {\n            \"status\": 401,\n            \"title\": \"AuthException\",\n            \"detail\": \"Invalid token provided, please login again.\"\n        }\n    ]\n}\n\n</code></pre>\n<h2 id=\"authorization-error-response\">Authorization error response</h2>\n<p>Some endpoints require a different set of permissions than others. If insufficient permissions are granted to the authenticated user, a <code>403 Forbidden</code> response is returned.</p>\n<h1 id=\"rate-limits\">Rate limits</h1>\n<p>All API requests are rate limited to avoid overloading the server.<br>The rate at which you can make requests to the API is limited by client IP address, and is limited at 10 requests per second. The API allows for short request bursts (i.e. you can exceed this limit for a short period of time). If you've exceeded your API rate limit, you'll get back a <code>503 Service Unavailable</code> response.</p>\n<p>Requests containing a user password in the payload are even further rate limited to mitigate brute-force attacks in user credentials.</p>\n<h1 id=\"terms-of-service\">Terms of service</h1>\n<p>You can find the terms of service <a href=\"https://\">on our website</a>.</p>\n<h1 id=\"api-reference\">API Reference</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"The Resource Object","slug":"the-resource-object"},{"content":"Working with the API","slug":"working-with-the-api"},{"content":"Atomic Operations","slug":"atomic-operations"},{"content":"Error responses","slug":"error-responses"},{"content":"Rate limits","slug":"rate-limits"},{"content":"Terms of service","slug":"terms-of-service"},{"content":"API Reference","slug":"api-reference"}],"owner":"11445485","collectionId":"be508df6-609a-471d-a539-5718d9f1125f","publishedId":"TzCLA9BM","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2024-04-16T12:50:06.000Z"},"item":[{"name":"General","item":[{"name":"Power-on self-test","event":[{"listen":"test","script":{"id":"b4068c10-f2c0-4056-bae2-fdd9fa5e9157","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"978391d3-2dd8-40a1-8ddf-56641605f166","exec":["console.log(\"Base_url: \", pm.environment.get(\"base_url\"));",""],"type":"text/javascript"}}],"id":"92d28cbd-87ea-48d0-b954-0716a37d24af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}","description":"<p>A simple test to check the system is set up correctly. If all is well, this request should return a simple HTML page with a link to the API documentation.</p>\n<p>It is also possible to ask for a JSON response, using the <code>Accept: application/json</code> header.</p>\n<p>This will return a 204 response if all is good, or a 500 error with a JSON error message if something is not correct.</p>\n<p>In debug mode, this will also contain a <code>meta</code> field, listing the area where the problem is.</p>\n","urlObject":{"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4cff5a6d-dd2d-4593-8d11-b811d942657b","name":"Power-on self-test","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":""},{"key":"Content-Type","value":"text/html; charset=UTF-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 05 Mar 2018 19:06:06 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.13.5","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/7.1.4","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"<!doctype html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link rel=\"icon\" type=\"image/png\" href=\"favicon.png\">\n    <title>Exivity</title>\n    <style>\n        body {\n            margin: 0;\n            padding: 2rem;\n            font-family: sans-serif;\n            font-size: 100%;\n            background-color: #ffffff;\n            color: #333;\n            text-align: center;\n        }\n\n        h1 {\n            font-size: 5rem;\n        }\n\n        pre {\n            display: inline-block;\n            text-align: center;\n        }\n\n        a {\n            color: black;\n        }\n\n        .setup {\n            position: absolute;\n            top: 0;\n            right: 0;\n            width: 100%;\n            height: 100%;\n        }\n    </style>\n</head>\n<body>\n\n<h1><img src=\"favicon.png\" style=\"height: 1em;\"/></h1>\n\n<pre>\nExivity API\n<a href=\"https://api.exivity.com\">api reference</a>\n</pre>\n\n<script>\n    var url = atob('aHR0cHM6Ly9mdGhtYi50cW4uY29tLzBNVTh1b3lNSTZac1MyWkhlYkt2YWNkQmszcz0vMTkyMHgxMDgwL2ZpbHRlcnM6ZmlsbChhdXRvLDEpL2Fib3V0L2Jpb3Mtc2V0dXAtdXRpbGl0eS01N2ZlNjNkYjNkZjc4Y2JjMjg2MDA5YzEuanBn');\n    var img = document.createElement(\"img\");\n    img.className = 'setup';\n    img.src = url;\n    document.onkeyup = function (e) {\n        e = e || window.event;\n        if (e.keyCode === 46)\n            document.body.appendChild(img);\n    };\n</script>\n\n</body>\n</html>"}],"_postman_id":"92d28cbd-87ea-48d0-b954-0716a37d24af"},{"name":"JSON API Version information","event":[{"listen":"test","script":{"id":"209ba1c0-e483-45eb-ac35-b1f2eb094a3d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","","pm.test(\"Response contains jsonapi version data\", function () {","    pm.expect(response.jsonapi).to.be.an('object');","    pm.expect(response.jsonapi.version).to.eql('1.1');","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"23e6a667-f3ff-4cb5-9c98-393246d451de","exec":[""],"type":"text/javascript","packages":{}}}],"id":"1ccc1745-4c14-4321-825c-4774e3b1550f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/v2/","urlObject":{"path":["v2",""],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"5cdfbf0f-0faf-4c7d-9da4-bb699ce6fadf","name":"JSON API Version information","originalRequest":{"method":"GET","header":[],"url":"{{base_url}}/v2/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 20 Feb 2023 11:38:47 GMT"},{"key":"Date","value":"Mon, 20 Feb 2023 11:38:47 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X5089b2c8b8a9f43ba7727d989f458a5b"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-qhd1DnWhmfYBJ6yijPsKBoFDr8EEgAjc';style-src 'self' 'nonce-qhd1DnWhmfYBJ6yijPsKBoFDr8EEgAjc';font-src 'self' data:"},{"key":"Request-Id","value":"c41ee291-c35a-48e8-9dea-f7fd8793c289"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonapi\": {\n        \"version\": \"1.1\"\n    },\n    \"ext\": [\n        \"https://jsonapi.org/ext/atomic\"\n    ]\n}"}],"_postman_id":"1ccc1745-4c14-4321-825c-4774e3b1550f"},{"name":"JSON API atomic operation","event":[{"listen":"test","script":{"id":"de991b81-6a91-4f2c-b1db-8c5aa51268ed","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains 3 results\", function () {","    pm.expect(response['atomic:results']).to.be.an('array');","    pm.expect(response['atomic:results'].length).to.eql(3);","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"82ddc79a-c935-4afa-9522-4b0687156065","exec":["pm.environment.set(\"username\", \"admin\");\r","pm.environment.set(\"password\", \"exivity\");\r","\r","const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"d00d58da-6562-45db-bcb1-917dd57e6fb5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json;ext=\"https://jsonapi.org/ext/atomic\"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"atomic:operations\": [\r\n        {\r\n            \"op\": \"add\",\r\n            \"data\": {\r\n                \"type\": \"workflow\",\r\n                \"lid\": \"foo\",\r\n                \"attributes\": {\r\n                    \"name\": \"Atomic workflow\",\r\n                    \"description\": \"My new atomic workflow\"\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"op\": \"add\",\r\n            \"data\": {\r\n                \"type\": \"workflowstep\",\r\n                \"lid\": \"bar\",\r\n                \"attributes\": {\r\n                    \"type\": \"execute\",\r\n                    \"timeout\": 600,\r\n                    \"options\": {\r\n                        \"command\": \"echo \\\"testing\\\"\"\r\n                    }\r\n                },\r\n                \"relationships\": {\r\n                    \"workflow\": {\r\n                        \"data\": {\r\n                            \"type\": \"workflow\",\r\n                            \"lid\": \"foo\"\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"op\": \"add\",\r\n            \"data\": {\r\n                \"type\": \"workflowstep\",\r\n                \"lid\": \"bar\",\r\n                \"attributes\": {\r\n                    \"type\": \"extract\",\r\n                    \"timeout\": 600,\r\n                    \"options\": {\r\n                        \"script\": \"Workflow_extractor\",\r\n                        \"from_date_offset\": \"-2\",\r\n                        \"to_date_offset\": \"2\",\r\n                        \"arguments\": \"test1 test2\"\r\n                    }\r\n                },\r\n                \"relationships\": {\r\n                    \"workflow\": {\r\n                        \"data\": {\r\n                            \"type\": \"workflow\",\r\n                            \"lid\": \"foo\"\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/","description":"<p>Many endpoint support Atomic Operations. This provides a means to perform multiple “operations” in a linear and atomic manner.</p>\n<p>At the top of all endpoints, it states whether or not it supports atomic operations.</p>\n<p>Example: Atomic support: ✔️</p>\n<p>Please read the <a href=\"https://jsonapi.org/ext/atomic/\">JSON:API Atomic Operations</a> documentation and see the examples to understand how this works.</p>\n","urlObject":{"path":["v2",""],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"81c107bf-e029-4e98-bd0b-ef99d98dc4a3","name":"Example add operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"atomic:operations\": [{\r\n    \"op\": \"add\",\r\n    \"ref\": {\r\n        \"type\": \"workflow\"\r\n    },\r\n    \"data\": {\r\n        \"type\": \"workflow\",\r\n        \"attributes\": {\r\n            \"name\": \"Atomic workflow\",\r\n            \"description\": \"My new atomic workflow\"\r\n        }\r\n    }\r\n  }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 22 Apr 2021 11:34:13 GMT"},{"key":"Date","value":"Thu, 22 Apr 2021 11:34:13 GMT"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Xzj1vgBU6i1N2MrvT0tIZQnRvqYytAoL';style-src 'self' 'nonce-Xzj1vgBU6i1N2MrvT0tIZQnRvqYytAoL';font-src 'self' data:"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"data\": {\n            \"type\": \"workflow\",\n            \"id\": \"39\",\n            \"attributes\": {\n                \"name\": \"Atomic workflow\",\n                \"description\": \"My new atomic workflow\",\n                \"created_at\": \"2021-04-22T11:34:13Z\",\n                \"updated_at\": \"2021-04-22T11:34:13Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/2/workflows/39\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/2/workflow/39/relationships/runs\",\n                        \"related\": \"http://localhost:8012/2/workflow/39/runs\"\n                    }\n                },\n                \"steps\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/2/workflow/39/relationships/steps\",\n                        \"related\": \"http://localhost:8012/2/workflow/39/steps\"\n                    }\n                },\n                \"schedules\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/2/workflow/39/relationships/schedules\",\n                        \"related\": \"http://localhost:8012/2/workflow/39/schedules\"\n                    }\n                }\n            }\n        }\n    }\n]"},{"id":"e18a6b5b-d87c-4262-86f0-08f9638d68f5","name":"Example update operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"atomic:operations\": [{\r\n    \"op\": \"update\",\r\n    \"ref\": {\r\n        \"type\": \"workflow\",\r\n        \"id\": \"42\"\r\n    },\r\n    \"data\": {\r\n        \"type\": \"workflow\",\r\n        \"attributes\": {\r\n            \"description\": \"My new description\"\r\n        }\r\n    }\r\n  }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 22 Apr 2021 11:46:57 GMT"},{"key":"Date","value":"Thu, 22 Apr 2021 11:46:57 GMT"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ZAedxzHUyVKl3GBcOFC76Twiy4VAL5X9';style-src 'self' 'nonce-ZAedxzHUyVKl3GBcOFC76Twiy4VAL5X9';font-src 'self' data:"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"data\": {\n            \"type\": \"workflow\",\n            \"id\": \"42\",\n            \"attributes\": {\n                \"name\": \"Atomic workflow\",\n                \"description\": \"My new description\",\n                \"created_at\": \"2021-04-22T11:37:32Z\",\n                \"updated_at\": \"2021-04-22T11:46:57Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/2/workflows/42\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/2/workflow/42/relationships/runs\",\n                        \"related\": \"http://localhost:8012/2/workflow/42/runs\"\n                    }\n                },\n                \"steps\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/2/workflow/42/relationships/steps\",\n                        \"related\": \"http://localhost:8012/2/workflow/42/steps\"\n                    }\n                },\n                \"schedules\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/2/workflow/42/relationships/schedules\",\n                        \"related\": \"http://localhost:8012/2/workflow/42/schedules\"\n                    }\n                }\n            }\n        }\n    }\n]"},{"id":"f7b0ce99-e1d5-4496-9d06-7f75fb9ce024","name":"Example remove operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"atomic:operations\": [{\r\n        \"op\": \"remove\",\r\n        \"ref\": {\r\n            \"type\": \"workflow\",\r\n            \"id\": \"42\"\r\n        }\r\n    }]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 22 Apr 2021 11:49:44 GMT"},{"key":"Date","value":"Thu, 22 Apr 2021 11:49:44 GMT"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-PMo5pR8Ar3U9s6huWTySgjgcMcEjNbmt';style-src 'self' 'nonce-PMo5pR8Ar3U9s6huWTySgjgcMcEjNbmt';font-src 'self' data:"}],"cookie":[],"responseTime":null,"body":"[\n    {}\n]"},{"id":"6a914873-9059-4462-bc7c-d586b8016430","name":"Example LID operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json;ext=\"https://jsonapi.org/ext/atomic\"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"atomic:operations\": [\r\n        {\r\n            \"op\": \"add\",\r\n            \"data\": {\r\n                \"type\": \"workflow\",\r\n                \"lid\": \"foo\",\r\n                \"attributes\": {\r\n                    \"name\": \"Atomic workflow\",\r\n                    \"description\": \"My new atomic workflow\"\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"op\": \"add\",\r\n            \"data\": {\r\n                \"type\": \"workflowstep\",\r\n                \"lid\": \"bar\",\r\n                \"attributes\": {\r\n                    \"type\": \"execute\",\r\n                    \"timeout\": 600,\r\n                    \"options\": {\r\n                        \"command\": \"echo \\\"testing\\\"\"\r\n                    }\r\n                },\r\n                \"relationships\": {\r\n                    \"workflow\": {\r\n                        \"data\": {\r\n                            \"type\": \"workflow\",\r\n                            \"lid\": \"foo\"\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n        },\r\n        {\r\n            \"op\": \"add\",\r\n            \"data\": {\r\n                \"type\": \"workflowstep\",\r\n                \"lid\": \"bar\",\r\n                \"attributes\": {\r\n                    \"type\": \"extract\",\r\n                    \"timeout\": 600,\r\n                    \"options\": {\r\n                        \"script\": \"Workflow_extractor\",\r\n                        \"from_date_offset\": \"-2\",\r\n                        \"to_date_offset\": \"2\",\r\n                        \"arguments\": \"test1 test2\"\r\n                    }\r\n                },\r\n                \"relationships\": {\r\n                    \"workflow\": {\r\n                        \"data\": {\r\n                            \"type\": \"workflow\",\r\n                            \"lid\": \"foo\"\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 24 Oct 2022 10:22:46 GMT"},{"key":"Date","value":"Mon, 24 Oct 2022 10:22:46 GMT"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Clockwork-Id","value":"X5d455abd22600f8d9d86063df63c54e9"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-S896SdL15u7OJceG9L3ize8QBBKRxymk';style-src 'self' 'nonce-S896SdL15u7OJceG9L3ize8QBBKRxymk';font-src 'self' data:"},{"key":"Request-Id","value":"819af2bc-27e8-4b91-9689-bafb21dfecfa"}],"cookie":[],"responseTime":null,"body":"{\n    \"atomic:results\": [\n        {\n            \"data\": {\n                \"type\": \"workflow\",\n                \"id\": \"11\",\n                \"attributes\": {\n                    \"name\": \"Atomic workflow\",\n                    \"description\": \"My new atomic workflow\",\n                    \"created_at\": \"2022-10-24T10:22:46Z\",\n                    \"updated_at\": \"2022-10-24T10:22:46Z\"\n                },\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/11\"\n                },\n                \"relationships\": {\n                    \"runs\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflows/11/relationships/runs\",\n                            \"related\": \"http://localhost:8012/v2/workflows/11/runs\"\n                        }\n                    },\n                    \"steps\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflows/11/relationships/steps\",\n                            \"related\": \"http://localhost:8012/v2/workflows/11/steps\"\n                        }\n                    },\n                    \"schedules\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflows/11/relationships/schedules\",\n                            \"related\": \"http://localhost:8012/v2/workflows/11/schedules\"\n                        }\n                    }\n                }\n            }\n        },\n        {\n            \"data\": {\n                \"type\": \"workflowstep\",\n                \"id\": \"11\",\n                \"attributes\": {\n                    \"type\": \"execute\",\n                    \"options\": {\n                        \"command\": \"echo \\\"testing\\\"\"\n                    },\n                    \"timeout\": 600,\n                    \"wait\": true\n                },\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/11\"\n                },\n                \"relationships\": {\n                    \"workflow\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflowsteps/11/relationships/workflow\",\n                            \"related\": \"http://localhost:8012/v2/workflowsteps/11/workflow\"\n                        }\n                    },\n                    \"steplogs\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflowsteps/11/relationships/steplogs\",\n                            \"related\": \"http://localhost:8012/v2/workflowsteps/11/steplogs\"\n                        }\n                    },\n                    \"previous\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflowsteps/11/relationships/previous\",\n                            \"related\": \"http://localhost:8012/v2/workflowsteps/11/previous\"\n                        }\n                    }\n                }\n            }\n        },\n        {\n            \"data\": {\n                \"type\": \"workflowstep\",\n                \"id\": \"12\",\n                \"attributes\": {\n                    \"type\": \"extract\",\n                    \"options\": {\n                        \"script\": \"Workflow_extractor\",\n                        \"from_date_offset\": -2,\n                        \"to_date_offset\": 2,\n                        \"arguments\": \"test1 test2\",\n                        \"environment_id\": null\n                    },\n                    \"timeout\": 600,\n                    \"wait\": true\n                },\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/12\"\n                },\n                \"relationships\": {\n                    \"workflow\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflowsteps/12/relationships/workflow\",\n                            \"related\": \"http://localhost:8012/v2/workflowsteps/12/workflow\"\n                        }\n                    },\n                    \"steplogs\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflowsteps/12/relationships/steplogs\",\n                            \"related\": \"http://localhost:8012/v2/workflowsteps/12/steplogs\"\n                        }\n                    },\n                    \"previous\": {\n                        \"links\": {\n                            \"self\": \"http://localhost:8012/v2/workflowsteps/12/relationships/previous\",\n                            \"related\": \"http://localhost:8012/v2/workflowsteps/12/previous\"\n                        }\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"d00d58da-6562-45db-bcb1-917dd57e6fb5"}],"id":"65189fe8-c299-4e40-be45-576529809cec","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"4b5edc3a-cee4-4aa2-8f41-142c1261674f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d45bc86b-e974-4dcd-8e73-9524b254a371","type":"text/javascript","exec":[""]}}],"_postman_id":"65189fe8-c299-4e40-be45-576529809cec","description":""},{"name":"Authentication","item":[{"name":"/token","item":[{"name":"Generate token","event":[{"listen":"test","script":{"id":"da5dbad0-fee4-4342-b1cc-6c5eeb1f06f7","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data (token)\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('auth');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes.token).to.be.a('string');","    pm.expect(response.data.attributes.permissions).to.be.an('array');","    pm.expect(response.data.attributes.permissions).to.eql([\"*\"]);","});","","// pm.test(\"Response contains relationship (user)\", function () {","//     pm.expect(response.data.relationships).to.be.an('object');","//     pm.expect(response.data.relationships.user).to.be.an('object');","//     pm.expect(response.data.relationships.user.data).to.be.an('object');","//     pm.expect(response.data.relationships.user.data.type).to.eql('user');","//     pm.expect(response.data.relationships.user.data.id).to.be.a('string');","// });","","pm.environment.set(\"token\", response.data.attributes.token);","console.log('SET token: ' + pm.environment.get(\"token\"));","console.log(response.data.relationships);","// pm.environment.set(\"user_id\", response.data.relationships.user.data.id);","// console.log('SET user_id: ' + pm.environment.get(\"user_id\"));"],"type":"text/javascript","packages":{}}}],"id":"8053b1ca-b271-4a28-b449-0d35e2e5812d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{username}}","description":"<p>string</p>\n","type":"text"},{"key":"password","value":"{{password}}","description":"<p>string</p>\n","type":"text"}]},"url":"{{base_url}}/v2/auth/token?include=user","description":"<p>⚡ Not JSON:API compliant</p>\n<p>Atomic support: ❌</p>\n<p>Generate a new JWT authentication token.</p>\n","urlObject":{"path":["v2","auth","token"],"host":["{{base_url}}"],"query":[{"key":"include","value":"user"}],"variable":[]}},"response":[{"id":"84b213eb-8ec3-4093-ab51-6b3065b0d741","name":"Generate token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{username}}","description":"string","type":"text"},{"key":"password","value":"{{password}}","description":"string","type":"text"}]},"url":"{{base_url}}/v2/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 17 Oct 2024 09:08:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xe10bfe0f033ec0bf011e0341a36e0b95"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xe10bfe0f033ec0bf011e0341a36e0b95"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-EQyi3YQ0HGuPQy7PFvaaFU5C58a2U2UL';style-src 'self' 'nonce-EQyi3YQ0HGuPQy7PFvaaFU5C58a2U2UL';font-src 'self' data:"},{"key":"Request-Id","value":"6a4533ed-fd50-4e49-8ed1-d58640835c76"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"auth\",\n        \"id\": \"2024-10-17 09:08:25acbfde23-79b2-40af-abfa-99b51c3bd5d0\",\n        \"attributes\": {\n            \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MjkxNTYxMDUsImV4cCI6MTcyOTE3MDUwNSwidXNlciI6ImFjYmZkZTIzLTc5YjItNDBhZi1hYmZhLTk5YjUxYzNiZDVkMCIsImZpbmdlcnByaW50IjoiMmZjNmVjOWZhNmVkNDBlZWQxOTE5OTdkNmNmNTE4MTljMThhYWZkMiJ9.vfbgO75htJVjZTZ1boqBf4iZMrMfoMfqLuBn6HR86To\",\n            \"permissions\": [\n                \"*\"\n            ]\n        }\n    }\n}"},{"id":"b48f7f23-01d4-4a98-b4d1-2136c5eed5f7","name":"Generate token with user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{username}}","description":"string","type":"text"},{"key":"password","value":"{{password}}","description":"string","type":"text"}]},"url":{"raw":"{{base_url}}/v2/auth/token?include=user","host":["{{base_url}}"],"path":["v2","auth","token"],"query":[{"key":"include","value":"user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Thu, 17 Oct 2024 09:29:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xb8e4cd05e7680d06082cb5fd31633c90"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xb8e4cd05e7680d06082cb5fd31633c90"},{"key":"ETag","value":"\"0f2a3a3252d0574240008a751f4c03c0\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-r0CMmPUomvfmKgBPpHoF5kbtdozXsJVr';style-src 'self' 'nonce-r0CMmPUomvfmKgBPpHoF5kbtdozXsJVr';font-src 'self' data:"},{"key":"Request-Id","value":"aa1d0771-5ed7-4689-8084-e83bb40a96c7"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"auth\",\n        \"id\": \"2024-10-17 09:29:23acbfde23-79b2-40af-abfa-99b51c3bd5d0\",\n        \"attributes\": {\n            \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3MjkxNTczNjMsImV4cCI6MTcyOTE3MTc2MywidXNlciI6ImFjYmZkZTIzLTc5YjItNDBhZi1hYmZhLTk5YjUxYzNiZDVkMCIsImZpbmdlcnByaW50IjoiNGNhNWNhMDY5YTY2NDFkMjE4MmMwNjcyMzgxMjMwMjVlYWFjYjY3YiJ9._fHoeECjBe9aAHybQZ8xN3SS5vxF1xYoHfntIq8zHGo\",\n            \"permissions\": [\n                \"*\"\n            ]\n        },\n        \"relationships\": {\n            \"user\": {\n                \"data\": {\n                    \"type\": \"user\",\n                    \"id\": \"acbfde23-79b2-40af-abfa-99b51c3bd5d0\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"user\",\n            \"id\": \"acbfde23-79b2-40af-abfa-99b51c3bd5d0\",\n            \"attributes\": {\n                \"username\": \"admin\",\n                \"email_address\": \"tester@exivity.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"admin\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/relationships/usergroup\",\n                        \"related\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/relationships/channels\",\n                        \"related\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/relationships/notificationchannels\",\n                        \"related\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/relationships/notificationsubscriptions\",\n                        \"related\": \"http://localhost:8012/v2/users/acbfde23-79b2-40af-abfa-99b51c3bd5d0/notificationsubscriptions\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"8053b1ca-b271-4a28-b449-0d35e2e5812d"},{"name":"Refresh token","event":[{"listen":"test","script":{"id":"4a0502e5-e53a-4143-978d-555dce8bf99d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains token\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('auth');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.token).to.be.a('string');","});","","pm.test(\"Response contains permissions\", function () {","    pm.expect(response.data.attributes.permissions).to.be.an('array')","    pm.expect(response.data.attributes.permissions).to.eql([\"*\"]);","});",""],"type":"text/javascript"}}],"id":"e2e33c0f-12db-45fc-a041-e423aa5ab59b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/auth/token?include=","description":"<p>Atomic support: ❌</p>\n","urlObject":{"path":["v2","auth","token"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>user</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"ca218752-eae3-433a-8929-0a8d405e1b98","name":"Refresh token","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/auth/token?include=","host":["{{base_url}}"],"path":["v2","auth","token"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `user`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 19 May 2022 09:51:30 GMT"},{"key":"Date","value":"Thu, 19 May 2022 09:51:30 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X2c579cd1c86a7ff379ab181ac2e38a7d"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X2c579cd1c86a7ff379ab181ac2e38a7d"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-66Uvchfcjhvt6gzrQo8VQAeY61i8MEDl';style-src 'self' 'nonce-66Uvchfcjhvt6gzrQo8VQAeY61i8MEDl';font-src 'self' data:"},{"key":"Request-Id","value":"be427631-7bb4-4b07-9ef5-e2508decf08a"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"auth\",\n        \"id\": \"2022-05-19 09:51:300d7c5635-c97e-4944-9f0c-cacd4c9cbcd3\",\n        \"attributes\": {\n            \"type\": \"token\",\n            \"value\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE2NTI5NTM4OTAsImV4cCI6MTY1Mjk2ODI5MCwidXNlciI6IjBkN2M1NjM1LWM5N2UtNDk0NC05ZjBjLWNhY2Q0YzljYmNkMyIsImZpbmdlcnByaW50IjoiZTE2NjIzYmU4YmYxNjhhYjYyYmRkNWFjZTVmYWU5ODNjNjdhNjZkYSJ9.HvJdL4u0jjvZkugCGwOsBSJWs6zB62K-Z0v8FJouoVI\",\n            \"permissions\": [\n                \"*\"\n            ]\n        }\n    }\n}"},{"id":"dd5b5fe2-bc83-4a33-9806-9f4dd1f17da9","name":"Refresh token including user","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/auth/token?include=user","host":["{{base_url}}"],"path":["v2","auth","token"],"query":[{"key":"include","value":"user","description":"Include additional related resources. Possible values: `user`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 21 Jul 2022 13:59:00 GMT"},{"key":"Date","value":"Thu, 21 Jul 2022 13:59:00 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X12fb106b2ef90ba0205ea4460158095a"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X12fb106b2ef90ba0205ea4460158095a"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-LQnjmeR14euoL6LhhpDbDr5Vjd8eyJYi';style-src 'self' 'nonce-LQnjmeR14euoL6LhhpDbDr5Vjd8eyJYi';font-src 'self' data:"},{"key":"Request-Id","value":"18b75cf9-d91d-4f35-93c4-f588acf6d12f"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"auth\",\n        \"id\": \"2022-07-21 13:59:005ee0cdca-2773-4b97-9f09-823b09198b46\",\n        \"attributes\": {\n            \"type\": \"token\",\n            \"value\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE2NTg0MTE5NDAsImV4cCI6MTY1ODQyNjM0MCwidXNlciI6IjVlZTBjZGNhLTI3NzMtNGI5Ny05ZjA5LTgyM2IwOTE5OGI0NiIsImZpbmdlcnByaW50IjoiZTE2NjIzYmU4YmYxNjhhYjYyYmRkNWFjZTVmYWU5ODNjNjdhNjZkYSJ9.p6vqp56oer4SLi6K4DjSvZyyoQ0-P9GjlYI7gk9O0_o\",\n            \"permissions\": [\n                \"*\"\n            ]\n        },\n        \"relationships\": {\n            \"user\": {\n                \"data\": {\n                    \"type\": \"user\",\n                    \"id\": \"5ee0cdca-2773-4b97-9f09-823b09198b46\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"user\",\n            \"id\": \"5ee0cdca-2773-4b97-9f09-823b09198b46\",\n            \"attributes\": {\n                \"username\": \"admin\",\n                \"email_address\": \"\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"admin\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/relationships/usergroup\",\n                        \"related\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/relationships/channels\",\n                        \"related\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/relationships/notificationchannels\",\n                        \"related\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/relationships/notificationsubscriptions\",\n                        \"related\": \"http://localhost:8012/v2/users/5ee0cdca-2773-4b97-9f09-823b09198b46/notificationsubscriptions\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"e2e33c0f-12db-45fc-a041-e423aa5ab59b"},{"name":"Revoke token","event":[{"listen":"test","script":{"id":"2d5d4d01-824e-4378-a6ac-1e4bf202b503","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET token');","pm.environment.unset(\"token\");"],"type":"text/javascript"}}],"id":"660c69fe-3705-4347-8023-58fea0df0306","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{base_url}}/v2/auth/token","description":"<p>Atomic support: ❌</p>\n<p>On success, a <code>HTTP 204 No Content</code> success status response will be returned.</p>\n","urlObject":{"path":["v2","auth","token"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e97e0fcc-2301-4b6e-92c8-fb75b5e92025","name":"Revoke token","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text","disabled":true}],"url":"{{base_url}}/v2/auth/token"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 19 May 2022 09:53:32 GMT"},{"key":"Date","value":"Thu, 19 May 2022 09:53:32 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Clockwork-Id","value":"X14136f0c07e5434849705c5e2346460c"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ODehl4E3uE3u6Kkdxz6iKDOSKYhUMUtc';style-src 'self' 'nonce-ODehl4E3uE3u6Kkdxz6iKDOSKYhUMUtc';font-src 'self' data:"},{"key":"Request-Id","value":"ad950107-ea55-4a83-a35e-89bea5aaf0c4"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"660c69fe-3705-4347-8023-58fea0df0306"}],"id":"62b91f49-d7c8-41bf-8185-0fd32ae836a5","description":"<h4 id=\"token-object\"><strong>Token object</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td><em>string</em></td>\n<td>read-only</td>\n<td>GUID token ID</td>\n</tr>\n<tr>\n<td>permissions</td>\n<td><em>array</em></td>\n<td>read-only</td>\n<td>User permissions. See the usergroup section for more information.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>hasOne</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"39442ed1-c5f1-44de-b4c1-2bde691a3383","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"03723b09-b82a-4528-ba18-d9dc507044b0","type":"text/javascript","exec":[""]}}],"_postman_id":"62b91f49-d7c8-41bf-8185-0fd32ae836a5","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d","id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d","name":"Authentication","type":"folder"}}},{"name":"/saml","item":[{"name":"Initiate SAML login request","event":[{"listen":"test","script":{"id":"afef4837-a418-4b1a-884c-4fc702ff1354","exec":["pm.test(\"Status code is 422 or 500\", function () {","    pm.expect(pm.response.code).to.be.oneOf([422, 500])","});","","console.log('---- Response: ----');","(pm.response.text())?pm.response.text():pm.response","if (pm.response.text()) {","    console.log(pm.response.text());","} else {","    console.log('No response');","}",""],"type":"text/javascript"}}],"id":"b5ffb4c4-faa3-4f03-a46e-c682bfa51ee3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{base_url}}/v2/auth/saml/login?return_url=","description":"<p>Atomic support: ❌</p>\n<p>Redirects to SAML Identity Provider SSO URL set in the SAML configuration. After a successful authentication (possibly interactive), it will redirect back to this APIs ACS endpoint.</p>\n","urlObject":{"path":["v2","auth","saml","login"],"host":["{{base_url}}"],"query":[{"key":"return_url","value":""}],"variable":[]}},"response":[],"_postman_id":"b5ffb4c4-faa3-4f03-a46e-c682bfa51ee3"},{"name":"Initiate SAML logout request","id":"7e42756b-aaa6-45b2-bc52-efe0a00422d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/v2/auth/saml/logout?return_url","description":"<p>Atomic support: ❌</p>\n<p>Redirects to SAML Identity Provider SLO URL set in the SAML configuration. After the user has been logged out, it will redirect back to this APIs SLS endpoint.</p>\n","urlObject":{"path":["v2","auth","saml","logout"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Glass URL to return to after logging out. If not specified, inferred from Referer header.</p>\n","type":"text/plain"},"key":"return_url","value":null}],"variable":[]}},"response":[],"_postman_id":"7e42756b-aaa6-45b2-bc52-efe0a00422d9"},{"name":"Entity ID endpoint","id":"86a6cd2f-24e4-4260-8076-00a0d3da6e5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/v2/auth/saml/metadata","description":"<p>Atomic support: ❌</p>\n<p>Metadata about the SAML Service Provider instance will be published at this URL.</p>\n","urlObject":{"path":["v2","auth","saml","metadata"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"86a6cd2f-24e4-4260-8076-00a0d3da6e5e"},{"name":"ACS endpoint","id":"02c4bb13-7466-403f-8dfc-efb46abb9220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/auth/saml/acs","description":"<p>Atomic support: ❌</p>\n<p>Assertion Consumer Service. If the received response from the SAML Identity Provider is valid, redirects to the Exivity dashboard.</p>\n","urlObject":{"path":["v2","auth","saml","acs"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02c4bb13-7466-403f-8dfc-efb46abb9220"},{"name":"SLS endpoint","id":"b6846e82-f317-44c3-87ea-494dfd8278fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/v2/auth/saml/sls","description":"<p>Atomic support: ❌</p>\n<p>Single Logout Service. If the received response from the SAML Identity Provider is valid, redirects back to the login screen of Exivity.</p>\n","urlObject":{"path":["v2","auth","saml","sls"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6846e82-f317-44c3-87ea-494dfd8278fa"}],"id":"e90583db-6476-4a12-a431-18e742b2a701","description":"<p>Endpoints for supporting Single Sign-On authentication flow using SAML.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/Security/Authentication/SAML2\">https://docs.exivity.com/Security/Authentication/SAML2</a></p>\n","event":[{"listen":"prerequest","script":{"id":"757f8f94-dcd7-4478-8abd-37d53a25bc8d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ac3c641e-36f9-41fb-aab1-1eef9cf62541","type":"text/javascript","exec":[""]}}],"_postman_id":"e90583db-6476-4a12-a431-18e742b2a701","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d","id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d","name":"Authentication","type":"folder"}}},{"name":"/resetpassword","item":[{"name":"Request a password reset","event":[{"listen":"test","script":{"id":"15907a71-1a6f-4dca-b97a-bd8993afcd6c","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6c3305d3-1f70-4273-9ce1-e250a86cd4f6","exec":[""],"type":"text/javascript"}}],"id":"3c61c017-f355-489c-9202-6d0a46ec7df2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email_address\": \"{{email_address}}\"\n}"},"url":"{{base_url}}/v2/auth/resetpassword","description":"<p>Atomic support: ❌</p>\n<p>This request required an email address. It checks that it is valid in our system and they email the user a reset token.</p>\n<p>On success, a <code>HTTP 204 No Content</code> success status response will be returned.</p>\n","urlObject":{"path":["v2","auth","resetpassword"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"f914f226-0cd1-424e-91f5-8ee2e66acf7a","name":"Request a password reset","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email_address\": \"somebody@example.com\"\n}"},"url":"{{base_url}}/v2/auth/resetpassword"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 19 May 2022 10:05:55 GMT"},{"key":"Date","value":"Thu, 19 May 2022 10:05:55 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Clockwork-Id","value":"X565465f79c1e0e1e9dcf0da140fa6b39"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X565465f79c1e0e1e9dcf0da140fa6b39"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-6L73sovaiU5FEBZn7LsrMzkMIFNFSlpO';style-src 'self' 'nonce-6L73sovaiU5FEBZn7LsrMzkMIFNFSlpO';font-src 'self' data:"},{"key":"Request-Id","value":"fe8faaf6-d295-4f28-93a8-41a5c6221cf3"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3c61c017-f355-489c-9202-6d0a46ec7df2"},{"name":"Perform a password reset","event":[{"listen":"test","script":{"id":"77339b16-23eb-437d-8aff-f8d3aac9ed83","exec":["// pm.test(\"Status code is 200\", function () {","//     pm.response.to.have.status(200);","// });","","// const response = pm.response.json();","","// pm.test(\"Response contains token\", function () {","//     pm.expect(response.token).to.be.a('string');","// });",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c99f8d1c-5dac-4f00-a8d8-de421c4897ae","exec":[""],"type":"text/javascript"}}],"id":"4095aa25-16ea-40db-9abd-9b49a6d1f230","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\": \"{{reset_token}}\",\n\t\"username\": \"{{username}}\",\n\t\"password\": \"{{password}}\",\n\t\"password_confirmation\": \"{{password_confirmation}}\"\n}"},"url":"{{base_url}}/v2/auth/resetpassword","description":"<p>Atomic support: ❌</p>\n<p>This step uses the reset token send in an email to validate the user and then reset their password.</p>\n","urlObject":{"path":["v2","auth","resetpassword"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4386c6ab-7f08-4d52-b7b1-450161cc206e","name":"Success - Perform a password reset","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\": \"1cfcb1b392d024af0f012e4ee11bc36f5b71194f5caa5a0912b33ec5679764a0\",\n\t\"username\": \"Alice\",\n\t\"password\": \"eS*40D0QGVUGDn.e\",\n\t\"password_confirmation\": \"eS*40D0QGVUGDn.e\"\n}"},"url":"{{base_url}}/v2/auth/resetpassword"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 27 May 2024 12:56:30 GMT"},{"key":"X-Clockwork-Id","value":"X8f6ce0628699522fbda55027e595cb3d"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X8f6ce0628699522fbda55027e595cb3d"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-8RlgJg7JVZ4VKDIJpkRrPAdlGbt4ksIU';style-src 'self' 'nonce-8RlgJg7JVZ4VKDIJpkRrPAdlGbt4ksIU';font-src 'self' data:"},{"key":"Request-Id","value":"1ab0c053-4ced-4341-8224-650b08de4688"}],"cookie":[],"responseTime":null,"body":null},{"id":"d14b7de3-ceb8-4da7-8ae2-9749d2b21dca","name":"Fail - Perform a password reset","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\": \"f2eceecc80de33f128618de78a964a90ab4b55450cb090ec1dbaacde4f2a6bb0\",\n\t\"username\": \"Alice\",\n\t\"password\": \"eS*40D0QGVUGDn.e\",\n\t\"password_confirmation\": \"eS*40D0QGVUGDn.e\"\n}"},"url":"{{base_url}}/v2/auth/resetpassword"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 27 May 2024 12:57:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xf72c8aa50e69cfa496b2f5c530901122"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xf72c8aa50e69cfa496b2f5c530901122"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-vryRUSRhfep7qkCNaxJiEf5Xi8Ije08e';style-src 'self' 'nonce-vryRUSRhfep7qkCNaxJiEf5Xi8Ije08e';font-src 'self' data:"},{"key":"Request-Id","value":"1517be42-31c9-474b-bbf7-48b16767a317"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 401,\n            \"title\": \"HttpException\",\n            \"detail\": \"The request could not be processed. Please ensure you are using the correct username and reset token.\"\n        }\n    ]\n}"}],"_postman_id":"4095aa25-16ea-40db-9abd-9b49a6d1f230"}],"id":"b09ccfea-fd37-4669-a31a-a01743a70dea","description":"<p>If a user forgets their password, this endpoint can be used to generate a new password. There are two steps:</p>\n<ol>\n<li><strong>Request a password reset</strong> - this generates a new reset token, which is emailed the user.</li>\n<li><strong>Perform a password reset</strong> - the reset token is used to validate the user and then reset their password.</li>\n</ol>\n","_postman_id":"b09ccfea-fd37-4669-a31a-a01743a70dea","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d","id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d","name":"Authentication","type":"folder"}}}],"id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d","description":"<p>The default method of authentication against the API is done through a stateless JWT token.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#authentication\">https://docs.exivity.com/architecture%20concepts/glossary/#authentication</a></p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"39a4cea9-e466-40eb-bb9a-a3ac84227380","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9e515eba-9765-4450-9a0c-65ae1a9ef30e","type":"text/javascript","exec":[""]}}],"_postman_id":"f0fc69bf-69f1-48e8-b770-651ead26cb4d"},{"name":"Reports","item":[{"name":"/reportdefinitions","item":[{"name":"Retrieve a list of report definitions","event":[{"listen":"test","script":{"id":"b6051dba-eb8a-45de-8d83-3010c5b619d5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"80b3035d-e9ce-41fb-b2de-c8653f8da33a","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"76814b88-4636-42c0-9508-6f7b6fcee3a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/reportdefinitions?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","reportdefinitions"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>accounts</code>, <code>metadatadefinitions</code>, <code>dataset</code>, <code>budgets</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"ea6423c9-6ae8-490e-a5e9-76fc3ae66923","name":"Retrieve a list of report definitions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/reportdefinitions?page[limit]&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","reportdefinitions"],"query":[{"key":"page[limit]","value":null},{"key":"page[offset]","value":null},{"key":"sort","value":null},{"key":"filter[attribute]","value":null},{"key":"include","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 24 Oct 2022 09:09:24 GMT"},{"key":"Date","value":"Mon, 24 Oct 2022 09:09:24 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X98a1a3bd5cb17ad45a8680b4787dd7cf"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-sjlsB9jHirCZDOfrSw2jm8sACOsdE2FA';style-src 'self' 'nonce-sjlsB9jHirCZDOfrSw2jm8sACOsdE2FA';font-src 'self' data:"},{"key":"Request-Id","value":"97cb2687-bed9-4bcc-bd68-a055aafddb00"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"test\",\n                \"created\": \"2022-09-29T07:19:19Z\",\n                \"last_updated\": \"2022-09-29T07:19:19Z\",\n                \"depth\": 5,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Customer\",\n                        \"name_column\": \"Customer\",\n                        \"label\": \"Customer\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"Region\",\n                        \"name_column\": \"Region\",\n                        \"label\": \"Region\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"Department\",\n                        \"name_column\": \"Department\",\n                        \"label\": \"Department\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"UniqueID\",\n                        \"name_column\": \"UniqueID\",\n                        \"label\": \"UniqueID\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"ok\",\n                            \"account_sync\": true,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"ok\",\n                            \"account_sync\": true,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"ok\",\n                            \"account_sync\": true,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/1\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/1/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/1/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/1/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/1/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/1/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/1/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/1/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/1/budgets\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"name\": \"Test report - 657\",\n                \"created\": \"2022-09-29T07:20:26Z\",\n                \"last_updated\": \"2022-09-29T07:20:26Z\",\n                \"depth\": 2,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Country\",\n                        \"name_column\": \"Country\",\n                        \"label\": \"Country\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/3\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/3/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/3/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/3/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/3/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/3/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/3/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/3/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/3/budgets\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"name\": \"Test report - visualize back-end communities\",\n                \"created\": \"2022-10-13T15:24:16Z\",\n                \"last_updated\": \"2022-10-13T15:24:16Z\",\n                \"depth\": 2,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Customer\",\n                        \"name_column\": \"Customer\",\n                        \"label\": \"Department\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/4\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/4/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/4/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/4/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/4/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/4/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/4/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/4/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/4/budgets\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"name\": \"Test report - whiteboard out-of-the-box e-tailers\",\n                \"created\": \"2022-10-24T08:40:51Z\",\n                \"last_updated\": \"2022-10-24T08:40:51Z\",\n                \"depth\": 2,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Customer\",\n                        \"name_column\": \"Customer\",\n                        \"label\": \"Department\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/5\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/5/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/5/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/5/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/5/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/5/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/5/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/5/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/5/budgets\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"name\": \"Test report - seize dynamic synergies\",\n                \"created\": \"2022-10-24T08:41:49Z\",\n                \"last_updated\": \"2022-10-24T08:41:49Z\",\n                \"depth\": 2,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Customer\",\n                        \"name_column\": \"Customer\",\n                        \"label\": \"Department\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/6\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/6/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/6/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/6/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/6/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/6/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/6/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/6/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/6/budgets\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"name\": \"Test report - recontextualize world-class experiences\",\n                \"created\": \"2022-10-24T09:08:16Z\",\n                \"last_updated\": \"2022-10-24T09:08:16Z\",\n                \"depth\": 2,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Customer\",\n                        \"name_column\": \"Customer\",\n                        \"label\": \"Department\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/7\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/7/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/7/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/7/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/7/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/7/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/7/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/7/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/7/budgets\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"name\": \"Test report - exploit cross-media architectures\",\n                \"created\": \"2022-10-24T09:08:27Z\",\n                \"last_updated\": \"2022-10-24T09:08:27Z\",\n                \"depth\": 2,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Customer\",\n                        \"name_column\": \"Customer\",\n                        \"label\": \"Department\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/8\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/8/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/8/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/8/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/8/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/8/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/8/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/8/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/8/budgets\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportdefinition\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"name\": \"Test report - productize robust platforms\",\n                \"created\": \"2022-10-24T09:08:37Z\",\n                \"last_updated\": \"2022-10-24T09:08:37Z\",\n                \"depth\": 2,\n                \"level_keys\": [\n                    {\n                        \"key_column\": \"Reseller\",\n                        \"name_column\": \"Reseller\",\n                        \"label\": \"Reseller\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 1\n                    },\n                    {\n                        \"key_column\": \"Customer\",\n                        \"name_column\": \"Customer\",\n                        \"label\": \"Department\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 2\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 3\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 4\n                    },\n                    {\n                        \"key_column\": \"\",\n                        \"name_column\": \"\",\n                        \"label\": \"\",\n                        \"metadata_definition_id\": null,\n                        \"level\": 5\n                    }\n                ],\n                \"data_status\": {\n                    \"first_date\": \"2017-08-25\",\n                    \"last_date\": \"2017-08-27\",\n                    \"missing\": 0,\n                    \"errors\": 0,\n                    \"status\": [\n                        {\n                            \"date\": \"2017-08-25\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-26\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        },\n                        {\n                            \"date\": \"2017-08-27\",\n                            \"missing\": false,\n                            \"column_status\": \"unknown\",\n                            \"account_sync\": false,\n                            \"prepared\": false\n                        }\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportdefinitions/9\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/accounts\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/9/accounts\"\n                    }\n                },\n                \"metadatadefinitions\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/metadatadefinitions\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/9/metadatadefinitions\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/9/dataset\"\n                    }\n                },\n                \"budgets\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/budgets\",\n                        \"related\": \"http://localhost:8012/v2/reportdefinitions/9/budgets\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 8,\n            \"count\": 8,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"http://localhost:8012/v2/reportdefinitions?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"http://localhost:8012/v2/reportdefinitions?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"http://localhost:8012/v2/reportdefinitions?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"76814b88-4636-42c0-9508-6f7b6fcee3a5"},{"name":"Add a new report definition","event":[{"listen":"test","script":{"id":"12f35322-ae9c-4688-a0b5-103b1dc8dfe3","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","(pm.response.code !== 201 ? console.log(pm.response) : console.log(pm.response.json()));","","const response = pm.response.json();","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('reportdefinition');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.include('Test report');","    pm.expect(response.data.attributes).to.include({","        \"depth\": 2","\t});","    pm.expect(response.data.attributes.created_at).to.be.a('string');","    pm.expect(response.data.attributes.updated_at).to.be.a('string');","});","","pm.test(\"Response contains level keys\", function () {","    pm.expect(response.data.attributes.level_keys).to.be.an('array');","    pm.expect(response.data.attributes.level_keys[0]).to.include({","        \"key_column\": \"Reseller\",","        \"name_column\": \"Reseller\",","        \"label\": \"Reseller\",","        \"metadata_definition_id\": null,","        \"level\": 1","\t});","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"reportdefinition_id\", response.data.id);","console.log('SET reportdefinition_id: ' + pm.environment.get(\"reportdefinition_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"be8352ef-089c-4516-a54a-07013f1e26f7","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireDset)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"0fd6784b-015d-4e2b-8b8d-63bcd6a444c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"reportdefinition\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Test report - drive dynamic eyeballs\",\r\n            \"level_keys\": [\r\n                {\r\n                    \"key_column\": \"Reseller\",\r\n                    \"name_column\": \"Reseller\",\r\n                    \"label\": \"Reseller\",\r\n                    \"level\": 1\r\n                },\r\n                {\r\n                    \"key_column\": \"Customer\",\r\n                    \"name_column\": \"Customer\",\r\n                    \"level\": 2\r\n                },\r\n                {\r\n                    \"label\": \"Department\",\r\n                    \"level\": 3\r\n                }\r\n            ]\r\n\t\t},\r\n        \"relationships\": {\r\n\t\t\t\"dataset\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"dataset\",\r\n\t\t\t\t\t\"id\": \"{{dataset_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/reportdefinitions","urlObject":{"path":["v2","reportdefinitions"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"74af54c6-61a1-4ec3-ad8d-de6a1c9bd3f9","name":"Add a new report definition","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"reportdefinition\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Test report - reinvent turn-key web-readiness\",\r\n            \"level_keys\": [\r\n                {\r\n                    \"key_column\": \"Reseller\",\r\n                    \"name_column\": \"Reseller\",\r\n                    \"label\": \"Reseller\",\r\n                    \"level\": 1\r\n                },\r\n                {\r\n                    \"key_column\": \"Customer\",\r\n                    \"name_column\": \"Customer\",\r\n                    \"level\": 2\r\n                },\r\n                {\r\n                    \"label\": \"Department\",\r\n                    \"level\": 3\r\n                }\r\n            ]\r\n\t\t},\r\n        \"relationships\": {\r\n\t\t\t\"dataset\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"dataset\",\r\n\t\t\t\t\t\"id\": \"{{dataset_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/reportdefinitions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 18 Jul 2023 08:25:25 GMT"},{"key":"Date","value":"Tue, 18 Jul 2023 08:25:25 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.2.6"},{"key":"Location","value":"http://localhost:8012/v2/ReportDefinition/ReportDefinitions"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X4a59193dd93787742c07453d48c4f0b3"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-WbZGNRaBlR3F8NKL7Pesm1852xzQYJdB';style-src 'self' 'nonce-WbZGNRaBlR3F8NKL7Pesm1852xzQYJdB';font-src 'self' data:"},{"key":"Request-Id","value":"087ecc0a-36d6-425d-8951-1e6ccd9c67ab"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"reportdefinition\",\n        \"id\": \"11\",\n        \"attributes\": {\n            \"name\": \"Test report - implement extensible portals\",\n            \"created_at\": \"2023-07-18T08:25:25Z\",\n            \"updated_at\": \"2023-07-18T08:25:25Z\",\n            \"depth\": 2,\n            \"outdated_start_date\": null,\n            \"outdated_end_date\": null,\n            \"level_keys\": [\n                {\n                    \"key_column\": \"Reseller\",\n                    \"name_column\": \"Reseller\",\n                    \"label\": \"Reseller\",\n                    \"level\": 1,\n                    \"metadatadefinition_id\": null\n                },\n                {\n                    \"key_column\": \"Customer\",\n                    \"name_column\": \"Customer\",\n                    \"label\": null,\n                    \"level\": 2,\n                    \"metadatadefinition_id\": null\n                }\n            ]\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/reportdefinitions/11\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/11/relationships/accounts\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/11/accounts\"\n                }\n            },\n            \"metadatadefinitions\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/11/relationships/metadatadefinitions\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/11/metadatadefinitions\"\n                }\n            },\n            \"dataset\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/11/relationships/dataset\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/11/dataset\"\n                }\n            },\n            \"budgets\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/11/relationships/budgets\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/11/budgets\"\n                }\n            },\n            \"reportstatuses\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/11/relationships/reportstatuses\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/11/reportstatuses\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"0fd6784b-015d-4e2b-8b8d-63bcd6a444c4"},{"name":"Retrieve a report definition","event":[{"listen":"test","script":{"id":"44676b6c-037f-4ff3-a767-a81339a76f30","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('reportdefinition');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.include('Test report');","    pm.expect(response.data.attributes).to.include({","        \"depth\": 2","\t});","    pm.expect(response.data.attributes.created).to.be.a('string');","    pm.expect(response.data.attributes.last_updated).to.be.a('string');","});","","pm.test(\"Response contains level keys\", function () {","    pm.expect(response.data.attributes.level_keys).to.be.an('array');","    pm.expect(response.data.attributes.level_keys[0]).to.include({","        \"key_column\": \"Reseller\",","        \"name_column\": \"Reseller\",","        \"label\": \"Reseller\",","        \"metadata_definition_id\": null,","        \"level\": 1","\t});","});","","pm.test(\"Data status is not empty\", function () {","    pm.expect(response.data.attributes.data_status).to.be.an('object').that.is.not.empty;","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6b8b8b0a-12ec-464b-9b78-8a9ddc97d6fc","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"d2653b74-0fee-4878-80ff-116c0665094d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/reportdefinitions/:reportdefinition_id","urlObject":{"path":["v2","reportdefinitions",":reportdefinition_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{reportdefinition_id}}","key":"reportdefinition_id"}]}},"response":[{"id":"73bd106f-2c90-4692-afba-99c00396ad9b","name":"Retrieve a report definition","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/reportdefinitions/:reportdefinition_id","host":["{{base_url}}"],"path":["v2","reportdefinitions",":reportdefinition_id"],"variable":[{"key":"reportdefinition_id","value":"{{reportdefinition_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 24 Oct 2022 09:10:40 GMT"},{"key":"Date","value":"Mon, 24 Oct 2022 09:10:40 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X2939ee9da6306eba669363b7bd128951"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ZdrumpO5nwqA8lp0ZeZNT613vL36Yl8M';style-src 'self' 'nonce-ZdrumpO5nwqA8lp0ZeZNT613vL36Yl8M';font-src 'self' data:"},{"key":"Request-Id","value":"a8e2571c-7dfc-458b-b266-65e769099b71"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"reportdefinition\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"name\": \"Test report - productize robust platforms\",\n            \"created\": \"2022-10-24T09:08:37Z\",\n            \"last_updated\": \"2022-10-24T09:08:37Z\",\n            \"depth\": 2,\n            \"level_keys\": [\n                {\n                    \"key_column\": \"Reseller\",\n                    \"name_column\": \"Reseller\",\n                    \"label\": \"Reseller\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 1\n                },\n                {\n                    \"key_column\": \"Customer\",\n                    \"name_column\": \"Customer\",\n                    \"label\": \"Department\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 2\n                },\n                {\n                    \"key_column\": \"\",\n                    \"name_column\": \"\",\n                    \"label\": \"\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 3\n                },\n                {\n                    \"key_column\": \"\",\n                    \"name_column\": \"\",\n                    \"label\": \"\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 4\n                },\n                {\n                    \"key_column\": \"\",\n                    \"name_column\": \"\",\n                    \"label\": \"\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 5\n                }\n            ],\n            \"data_status\": {\n                \"first_date\": \"2017-08-25\",\n                \"last_date\": \"2017-08-27\",\n                \"missing\": 0,\n                \"errors\": 0,\n                \"status\": [\n                    {\n                        \"date\": \"2017-08-25\",\n                        \"missing\": false,\n                        \"column_status\": \"unknown\",\n                        \"account_sync\": false,\n                        \"prepared\": false\n                    },\n                    {\n                        \"date\": \"2017-08-26\",\n                        \"missing\": false,\n                        \"column_status\": \"unknown\",\n                        \"account_sync\": false,\n                        \"prepared\": false\n                    },\n                    {\n                        \"date\": \"2017-08-27\",\n                        \"missing\": false,\n                        \"column_status\": \"unknown\",\n                        \"account_sync\": false,\n                        \"prepared\": false\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/reportdefinitions/9\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/accounts\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/accounts\"\n                }\n            },\n            \"metadatadefinitions\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/metadatadefinitions\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/metadatadefinitions\"\n                }\n            },\n            \"dataset\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/dataset\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/dataset\"\n                }\n            },\n            \"budgets\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/budgets\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/budgets\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"d2653b74-0fee-4878-80ff-116c0665094d"},{"name":"Update a report definition","event":[{"listen":"test","script":{"id":"5367e685-5caa-442e-8bec-bd46b01d8147","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('reportdefinition');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.include('Modified test report');","    pm.expect(response.data.attributes).to.include({","        \"depth\": 2","\t});","    pm.expect(response.data.attributes.created).to.be.a('string');","    pm.expect(response.data.attributes.last_updated).to.be.a('string');","    pm.expect(response.data.attributes.data_status).to.be.an('object');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"c592f07c-a4d3-4c82-87c0-1b7b26e62dc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"reportdefinition\",\r\n\t\t\"id\": \"{{reportdefinition_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Modified test report - unleash rich solutions\"\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/reportdefinitions/{{reportdefinition_id}}","urlObject":{"path":["v2","reportdefinitions","{{reportdefinition_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"3dc9d2f2-a205-4d9f-b9f7-571919d50979","name":"Update a report definition","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"reportdefinition\",\r\n\t\t\"id\": \"{{reportdefinition_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Modified test report - maximize open-source action-items\"\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/reportdefinitions/{{reportdefinition_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 24 Oct 2022 09:12:35 GMT"},{"key":"Date","value":"Mon, 24 Oct 2022 09:12:35 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X7cd3b6c4c7de07ef9f70da95707b361a"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Qsqq3XL4Wa7lIPcrCL1q5l97gQCiWZq0';style-src 'self' 'nonce-Qsqq3XL4Wa7lIPcrCL1q5l97gQCiWZq0';font-src 'self' data:"},{"key":"Request-Id","value":"5e3fe0e4-9383-4cef-be3a-831adaab59b2"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"reportdefinition\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"name\": \"Modified test report - disintermediate compelling applications\",\n            \"created\": \"2022-10-24T09:08:37Z\",\n            \"last_updated\": \"2022-10-24T09:12:35Z\",\n            \"depth\": 2,\n            \"level_keys\": [\n                {\n                    \"key_column\": \"Reseller\",\n                    \"name_column\": \"Reseller\",\n                    \"label\": \"Reseller\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 1\n                },\n                {\n                    \"key_column\": \"Customer\",\n                    \"name_column\": \"Customer\",\n                    \"label\": \"Department\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 2\n                },\n                {\n                    \"key_column\": \"\",\n                    \"name_column\": \"\",\n                    \"label\": \"\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 3\n                },\n                {\n                    \"key_column\": \"\",\n                    \"name_column\": \"\",\n                    \"label\": \"\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 4\n                },\n                {\n                    \"key_column\": \"\",\n                    \"name_column\": \"\",\n                    \"label\": \"\",\n                    \"metadata_definition_id\": null,\n                    \"level\": 5\n                }\n            ],\n            \"data_status\": {\n                \"first_date\": \"2017-08-25\",\n                \"last_date\": \"2017-08-27\",\n                \"missing\": 0,\n                \"errors\": 0,\n                \"status\": [\n                    {\n                        \"date\": \"2017-08-25\",\n                        \"missing\": false,\n                        \"column_status\": \"unknown\",\n                        \"account_sync\": false,\n                        \"prepared\": false\n                    },\n                    {\n                        \"date\": \"2017-08-26\",\n                        \"missing\": false,\n                        \"column_status\": \"unknown\",\n                        \"account_sync\": false,\n                        \"prepared\": false\n                    },\n                    {\n                        \"date\": \"2017-08-27\",\n                        \"missing\": false,\n                        \"column_status\": \"unknown\",\n                        \"account_sync\": false,\n                        \"prepared\": false\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/reportdefinitions/9\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/accounts\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/accounts\"\n                }\n            },\n            \"metadatadefinitions\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/metadatadefinitions\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/metadatadefinitions\"\n                }\n            },\n            \"dataset\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/dataset\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/dataset\"\n                }\n            },\n            \"budgets\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reportdefinitions/9/relationships/budgets\",\n                    \"related\": \"http://localhost:8012/v2/reportdefinitions/9/budgets\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"c592f07c-a4d3-4c82-87c0-1b7b26e62dc9"},{"name":"Delete a report definition","event":[{"listen":"test","script":{"id":"c9423467-e59d-4d04-b88f-c1e6cf5bf5d1","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET reportdefinition_id');","pm.environment.unset(\"reportdefinition_id\");"],"type":"text/javascript"}}],"id":"304aeea5-03cb-4a7b-8737-b9a180df2463","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/reportdefinitions/:reportdefinition_id","urlObject":{"path":["v2","reportdefinitions",":reportdefinition_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{reportdefinition_id}}","key":"reportdefinition_id"}]}},"response":[{"id":"bdda6741-8aec-41c0-ac91-2e7579458300","name":"Delete a report definition","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/reportdefinitions/{{reportdefinition_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 19 May 2022 15:18:55 GMT"},{"key":"Date","value":"Thu, 19 May 2022 15:18:55 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Clockwork-Id","value":"Xb360dba33dad4b207dc6538636fac9a2"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xb360dba33dad4b207dc6538636fac9a2"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-unkhahtnFklukvLScqFplLaxID7SY2aM';style-src 'self' 'nonce-unkhahtnFklukvLScqFplLaxID7SY2aM';font-src 'self' data:"},{"key":"Request-Id","value":"5398c895-5b92-4a38-8bd8-bb4d658bdaa4"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"304aeea5-03cb-4a7b-8737-b9a180df2463"}],"id":"fb60cf9c-707d-4e07-b6c3-9f33cb1c687a","description":"<p>The report object contains the definition of how to generate a report, and once the report has run, the report data itself.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#report\">https://docs.exivity.com/architecture%20concepts/glossary/#report</a></p>\n<h4 id=\"the-report-object\"><strong>The report object</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Unique name, max 255 chars</td>\n</tr>\n<tr>\n<td>created</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td>Date created, format: Y-m-d\\TH:i:s\\Z</td>\n</tr>\n<tr>\n<td>last_updated</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td>Date last updated, format: Y-m-d\\TH:i:s\\Z</td>\n</tr>\n<tr>\n<td>depth</td>\n<td><em>integer</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>outdated_start_date</td>\n<td><em>date</em></td>\n<td>👁 read-only</td>\n<td>Signals date from which the data are outdated because of changes and need to be prepared.</td>\n</tr>\n<tr>\n<td>outdated_end_date</td>\n<td>date</td>\n<td>👁 read-only</td>\n<td>Signals end date of outdated data. If outdated but value is null, all data from start date is outdated.</td>\n</tr>\n<tr>\n<td>level_keys</td>\n<td><em>array of objects</em></td>\n<td>👁 editable</td>\n<td>See level_key objects below</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"the-level_key-object\"><strong>The level_key object</strong></h4>\n<p>The report levels are contained inside level_key objects.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>key_column</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Key column, max 255 chars</td>\n</tr>\n<tr>\n<td>name_column</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Name column, max 255 chars</td>\n</tr>\n<tr>\n<td>label</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Label, max 255 chars</td>\n</tr>\n<tr>\n<td>metadata_definition_id</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Metadata definition ID. Or -1 if inheriting from parent (levels 2-5 only).</td>\n</tr>\n<tr>\n<td>level</td>\n<td><em>integer</em></td>\n<td></td>\n<td>1-5</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dataset</td>\n<td>hasOne</td>\n<td>dataset</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>accounts</td>\n<td>hasMany</td>\n<td>account</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>budgets</td>\n<td>hasMany</td>\n<td>budget</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>metadatadefinitions</td>\n<td>hasMany</td>\n<td>metadatadefinition</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>reportstatuses</td>\n<td>hasMany</td>\n<td>reportstatus</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"ee2968e7-e592-4ad8-8f1f-610eedc615be","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9952397e-a7fa-4f36-95f8-b73206f96a9e","type":"text/javascript","exec":[""]}}],"_postman_id":"fb60cf9c-707d-4e07-b6c3-9f33cb1c687a"},{"name":"/reportdata","item":[{"name":"Get report data","event":[{"listen":"prerequest","script":{"id":"646a1877-9597-4fac-a804-5bbcf142fc5b","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReportDefinition)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"e57abd37-0a0a-4ec0-a082-bdd5edb88f80","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","    pm.expect(response.data[0].type).to.be.a('string');","    pm.expect(response.data[0].id).to.be.a('string');","    pm.expect(response.data[0].attributes).to.be.an('object');","    pm.expect(response.data[0].attributes).to.have.property('rate_id');","    pm.expect(response.data[0].attributes).to.have.property('subtotal_quantity');","    pm.expect(response.data[0].attributes).to.have.property('total_quantity');","    pm.expect(response.data[0].attributes).to.have.property('unit_based_subtotal_charge');","    pm.expect(response.data[0].attributes).to.have.property('interval_based_subtotal_charge');","    pm.expect(response.data[0].attributes).to.have.property('subtotal_charge');","    pm.expect(response.data[0].attributes).to.have.property('total_charge');","    pm.expect(response.data[0].attributes).to.have.property('total_cogs');","    pm.expect(response.data[0].attributes).to.have.property('total_net');","});","",""],"type":"text/javascript"}}],"id":"60541713-c4f0-4a85-a5a1-10338b67217b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/reportdata/:reportdefinition_id/run?start={{start}}&end={{end}}&dimension=&timeline=&depth=&include=&filter[field]&format=&precision=&progress=&csv_delimiter=&csv_decimal_separator&summary_options=","description":"<p>The output format when either <code>json</code> or <code>csv</code> is selected as the <code>format</code> parameter:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>rate_id</td>\n<td><em>string</em></td>\n<td>Key for the applicable rate</td>\n</tr>\n<tr>\n<td>service_id</td>\n<td><em>string</em></td>\n<td>Key for the applicable service, only when <code>services</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>servicecategory_id</td>\n<td><em>string</em></td>\n<td>Key for the applicable service category, only when <code>services</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td><em>string</em></td>\n<td>Key for the applicable account, only when <code>accounts</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>instance_value</td>\n<td><em>string</em></td>\n<td>Unique identifier for the applicable instance, only when <code>instances</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>day</td>\n<td><em>string</em></td>\n<td>The day in <code>YYYYMMDD</code> format, only when the <code>timeline</code> parameter is set to <code>day</code></td>\n</tr>\n<tr>\n<td>month</td>\n<td><em>string</em></td>\n<td>The month in <code>YYYYMM</code> format, only when the <code>timeline</code> parameter is set to <code>month</code></td>\n</tr>\n<tr>\n<td>subtotal_quantity</td>\n<td><em>float</em></td>\n<td>Quantity before adjustments and mininum commit are applied</td>\n</tr>\n<tr>\n<td>min_commit_delta_quantity</td>\n<td><em>float</em></td>\n<td>Difference in quantity based on applying minimum commit, only populated when <code>instances</code> is not included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>total_quantity</td>\n<td><em>float</em></td>\n<td>Quantity after adjustments and mininum commit are applied. If <code>instances</code> is included in the <code>dimension</code> parameter, equal to <em>subtotal_quantity</em>.</td>\n</tr>\n<tr>\n<td>unit_based_subtotal_charge</td>\n<td><em>float</em></td>\n<td>Fraction of charge based on a per unit rate, before adjustments and mininum commit are applied</td>\n</tr>\n<tr>\n<td>interval_based_subtotal_charge</td>\n<td><em>float</em></td>\n<td>Fraction of charge based on a per interval rate, before adjustments and mininum commit are applied</td>\n</tr>\n<tr>\n<td>avg_unit_based_rate</td>\n<td><em>float</em></td>\n<td>Average per unit rate</td>\n</tr>\n<tr>\n<td>avg_interval_based_rate</td>\n<td><em>float</em></td>\n<td><em>placeholder</em></td>\n</tr>\n<tr>\n<td>subtotal_charge</td>\n<td><em>float</em></td>\n<td>Charge (same as <code>unit_based_subtotal_charge + interval_based_subtotal_charge</code>) before adjustments and mininum commit are applied</td>\n</tr>\n<tr>\n<td>min_commit_delta_charge</td>\n<td><em>float</em></td>\n<td>Difference in charge based on applying minimum commit, only populated when <code>instances</code> is not included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>total_charge</td>\n<td><em>float</em></td>\n<td>Charge after adjustments and mininum commit are applied. If <code>instances</code> is included in the <code>dimension</code> parameter, equal to <em>subtotal_charge</em>.</td>\n</tr>\n<tr>\n<td>total_cogs</td>\n<td><em>float</em></td>\n<td>Cogs, only if user permissions includes <code>VIEW_COGS</code></td>\n</tr>\n<tr>\n<td>total_net</td>\n<td><em>float</em></td>\n<td>Net (same as <code>total_charge - total_cogs</code>), only if user permissions includes <code>VIEW_COGS</code></td>\n</tr>\n<tr>\n<td>adjustments</td>\n<td><em>array</em></td>\n<td>Adjustments data (see below), only populated when <code>instances</code> is not included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>account_name</td>\n<td><em>string</em></td>\n<td>Name for the applicable account, only when <code>accounts</code> is included in the <code>dimension</code> parameter and <code>account_name</code> is included in the <code>include</code> parameter</td>\n</tr>\n<tr>\n<td>service_description</td>\n<td><em>string</em></td>\n<td>Description for the applicable service, only when <code>services</code> is included in the <code>dimension</code> parameter and <code>service_description</code> is included in the <code>include</code> parameter</td>\n</tr>\n<tr>\n<td>servicecategory_name</td>\n<td><em>string</em></td>\n<td>Name for the applicable service category, only when <code>services</code> is included in the <code>dimension</code> parameter and <code>servicecategory_name</code> is included in the <code>include</code> parameter</td>\n</tr>\n</tbody>\n</table>\n</div><p>The output format of the embedded adjustments data:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td><em>integer</em></td>\n<td>Key for the applicable adjustment</td>\n</tr>\n<tr>\n<td>charge</td>\n<td><em>float</em></td>\n<td>Difference in quantity based on applying this adjustment</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td><em>float</em></td>\n<td>Difference in charge based on applying this adjustment</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","reportdata",":reportdefinition_id","run"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The start of the date range (inclusive) you want to run the report for in <code>yyyy-mm-dd</code> format. Defaults to the current date.</p>\n","type":"text/plain"},"key":"start","value":"{{start}}"},{"description":{"content":"<p>The end of the date range (inclusive) you want to run the report for in <code>yyyy-mm-dd</code> format. Defaults to the current date.</p>\n","type":"text/plain"},"key":"end","value":"{{end}}"},{"description":{"content":"<p>The dimension you want to include in the output. One of <code>accounts</code>, <code>services</code> or <code>instances</code> (or a combination of those as a comma separated list). Defaults to <code>accounts,services</code>. When <code>instances</code> is included, price and quantity adjustments and minimum commit are not reflected in the data.</p>\n","type":"text/plain"},"key":"dimension","value":""},{"description":{"content":"<p>One of <code>day</code>, <code>month</code> or <code>none</code>. Defaults to <code>day</code>.</p>\n","type":"text/plain"},"key":"timeline","value":""},{"description":{"content":"<p>The depth in the report definition you want to report on. Defaults to 1.</p>\n","type":"text/plain"},"key":"depth","value":""},{"description":{"content":"<p>Optionally specify a list of extra fields you want to output with the results. Possible fields are <code>account_key</code>, <code>account_name</code>, <code>service_key</code>, <code>service_description</code>, <code>servicecategory_name</code>, <code>start_date</code>, <code>end_date</code>, <code>adjustment_name</code> (or a combination of those as a comma separated list). The account and service fields are only available if their respective dimension is included in the request.</p>\n","type":"text/plain"},"key":"include","value":""},{"description":{"content":"<p>Optionally <a href=\"#working-with-the-api\">filter</a> results by this attribute. Possible fields are <code>account_id</code>, <code>parent_account_id</code>, <code>service_id</code>, <code>servicecategory_id</code>, <code>instance</code>. This parameter can occur multiple times in a request to filter by multiple fields.</p>\n","type":"text/plain"},"key":"filter[field]","value":null},{"description":{"content":"<p>One of <code>json</code>, <code>csv</code> or <code>pdf/summary</code>. Default to <code>json</code>.</p>\n","type":"text/plain"},"key":"format","value":""},{"description":{"content":"<p>Specify <code>highest</code> to get raw precision, use configuration otherwise. Defaults to <code>configuration</code>.</p>\n","type":"text/plain"},"key":"precision","value":""},{"description":{"content":"<p>When set to <code>1</code> and format is <code>json</code>, results will be streamed with progress indicator in response body. When format is <code>csv</code>, results are always streamed without progress indicator, <code>pdf/ínvoice</code> is never streamed. Defaults to <code>1</code>.</p>\n","type":"text/plain"},"key":"progress","value":""},{"description":{"content":"<p>The CSV delimiter to use. Only applicable when <code>format</code> is set to <code>csv</code>. Possible values: <code>,</code>, <code>;</code>, <code>:</code>, <code>\\t</code>, <code>|</code>. Leave blank to use configuration.</p>\n","type":"text/plain"},"key":"csv_delimiter","value":""},{"description":{"content":"<p>The decimal separator to use. Only applicable when <code>format</code> is set to <code>csv</code>. Possible values: <code>,</code>, <code>.</code>. Leave blank to use configuration.</p>\n","type":"text/plain"},"key":"csv_decimal_separator","value":null},{"description":{"content":"<p>List of options for the pdf/summary format, in a comma seperated list. Possible options: <code>consolidated</code>, <code>accounts</code>, <code>services</code>, <code>instances_by_instance</code> and <code>instances_by_service</code>. Defaults to <code>services</code>.</p>\n","type":"text/plain"},"key":"summary_options","value":""}],"variable":[{"description":{"content":"<p>ID of report to run</p>\n","type":"text/plain"},"type":"any","value":"{{reportdefinition_id}}","key":"reportdefinition_id"}]}},"response":[{"id":"48743251-1d4d-461c-af1c-990d9b7efebb","name":"Get report data","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/reports/:report_id/run?start={{start}}&end={{end}}&dimension=&timeline=&depth=&include=&filter[field]&format=&precision=&progress=&csv_delimiter=&csv_decimal_separator&summary_options=","host":["{{base_url}}"],"path":["v2","reports",":report_id","run"],"query":[{"key":"start","value":"{{start}}","description":"The start of the date range (inclusive) you want to run the report for in `yyyy-mm-dd` format. Defaults to the current date."},{"key":"end","value":"{{end}}","description":"The end of the date range (inclusive) you want to run the report for in `yyyy-mm-dd` format. Defaults to the current date."},{"key":"dimension","value":"","description":"The dimension you want to include in the output. One of `accounts`, `services` or `instances` (or a combination of those as a comma separated list). Defaults to `accounts,services`. When `instances` is included, price and quantity adjustments and minimum commit are not reflected in the data."},{"key":"timeline","value":"","description":"One of `day`, `month` or `none`. Defaults to `day`."},{"key":"depth","value":"","description":"The depth in the report definition you want to report on. Defaults to 1."},{"key":"include","value":"","description":"Optionally specify a list of extra fields you want to output with the results. Possible fields are `account_key`, `account_name`, `service_key`, `service_description`, `servicecategory_name`, `start_date`, `end_date`, `adjustment_name` (or a combination of those as a comma separated list). The account and service fields are only available if their respective dimension is included in the request."},{"key":"filter[field]","value":null,"description":"Optionally filter the output by the supplied field. Possible fields are `account_id`, `parent_account_id`, `service_id`, `servicecategory_id`, `instance`. This parameter can occur multiple times in a request to filter by multiple fields."},{"key":"format","value":"","description":"One of `json`, `csv` or `pdf/summary`. Default to `json`."},{"key":"precision","value":"","description":"Specify `highest` to get raw precision, use configuration otherwise. Defaults to `configuration`."},{"key":"progress","value":"","description":"When set to `1` and format is `json`, results will be streamed with progress indicator in response body. When format is `csv`, results are always streamed without progress indicator, `pdf/ínvoice` is never streamed. Defaults to `1`."},{"key":"csv_delimiter","value":"","description":"The CSV delimiter to use. Only applicable when `format` is set to `csv`. Possible values: `,`, `;`, `:`, `\\t`, `|`. Leave blank to use configuration."},{"key":"csv_decimal_separator","value":null,"description":"The decimal separator to use. Only applicable when `format` is set to `csv`. Possible values: `,`, `.`. Leave blank to use configuration."},{"key":"summary_options","value":"","description":"List of options for the pdf/summary format, in a comma seperated list. Possible options: `consolidated`, `accounts`, `services`, `instances_by_instance` and `instances_by_service`. Defaults to `services`."}],"variable":[{"id":"78dc38b4-990e-4267-b9c4-1e8919da61ee","key":"report_id","value":"{{report_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 19 May 2022 15:18:18 GMT"},{"key":"Date","value":"Thu, 19 May 2022 15:18:18 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xacc387a439f53c6c50277701a698ec42"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xacc387a439f53c6c50277701a698ec42"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-6A7UAvMgVvOkdyWY1qvkOGjJpzVHLIfX';style-src 'self' 'nonce-6A7UAvMgVvOkdyWY1qvkOGjJpzVHLIfX';font-src 'self' data:"},{"key":"Request-Id","value":"66a14368-6869-41b3-b2f9-7d98dc231387"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"report\",\n        \"id\": \"4\",\n        \"attributes\": {\n            \"name\": \"Modified test report - scale one-to-one experiences\",\n            \"dset\": \"test.usage\",\n            \"created\": \"2022-05-19T14:50:51Z\",\n            \"last_updated\": \"2022-05-19T14:51:23Z\",\n            \"lvl1_key_col\": \"Customer\",\n            \"lvl1_name_col\": \"Customer\",\n            \"lvl1_label\": \"Customer\",\n            \"lvl1_metadata_definition_id\": null,\n            \"lvl2_key_col\": \"Reseller\",\n            \"lvl2_name_col\": \"Reseller\",\n            \"lvl2_label\": \"Reseller\",\n            \"lvl2_metadata_definition_id\": null,\n            \"lvl3_key_col\": \"\",\n            \"lvl3_name_col\": \"\",\n            \"lvl3_label\": \"\",\n            \"lvl3_metadata_definition_id\": null,\n            \"lvl4_key_col\": \"\",\n            \"lvl4_name_col\": \"\",\n            \"lvl4_label\": \"\",\n            \"lvl4_metadata_definition_id\": null,\n            \"lvl5_key_col\": \"\",\n            \"lvl5_name_col\": \"\",\n            \"lvl5_label\": \"\",\n            \"lvl5_metadata_definition_id\": null,\n            \"depth\": 2,\n            \"data_status\": {\n                \"first_date\": \"2017-08-25\",\n                \"last_date\": \"2017-08-27\",\n                \"missing\": 0,\n                \"errors\": 0,\n                \"status\": [\n                    {\n                        \"date\": \"2017-08-25\",\n                        \"missing\": false,\n                        \"column_status\": \"ok\",\n                        \"account_sync\": true,\n                        \"prepared\": true\n                    },\n                    {\n                        \"date\": \"2017-08-26\",\n                        \"missing\": false,\n                        \"column_status\": \"ok\",\n                        \"account_sync\": true,\n                        \"prepared\": true\n                    },\n                    {\n                        \"date\": \"2017-08-27\",\n                        \"missing\": false,\n                        \"column_status\": \"ok\",\n                        \"account_sync\": true,\n                        \"prepared\": true\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/reports/4\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reports/4/relationships/accounts\",\n                    \"related\": \"http://localhost:8012/v2/reports/4/accounts\"\n                }\n            },\n            \"metadatadefinitions\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reports/4/relationships/metadatadefinitions\",\n                    \"related\": \"http://localhost:8012/v2/reports/4/metadatadefinitions\"\n                }\n            },\n            \"dataset\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reports/4/relationships/dataset\",\n                    \"related\": \"http://localhost:8012/v2/reports/4/dataset\"\n                }\n            },\n            \"budgets\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/reports/4/relationships/budgets\",\n                    \"related\": \"http://localhost:8012/v2/reports/4/budgets\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"report\": [\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"2.000000\",\n                \"total_quantity\": \"2.000000\",\n                \"unit_based_subtotal_charge\": \"5.00\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"5.00\",\n                \"total_charge\": \"5.00\",\n                \"total_cogs\": \"4.40\",\n                \"total_net\": \"0.60\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"56\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"2.000000\",\n                \"total_quantity\": \"2.000000\",\n                \"unit_based_subtotal_charge\": \"2.40\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"2.40\",\n                \"total_charge\": \"2.40\",\n                \"total_cogs\": \"1.60\",\n                \"total_net\": \"0.80\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"1.20000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"56\",\n                \"service_id\": \"65\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"116.000000\",\n                \"total_quantity\": \"116.000000\",\n                \"unit_based_subtotal_charge\": \"1985.04\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"1985.04\",\n                \"total_charge\": \"1985.04\",\n                \"total_cogs\": \"1600.80\",\n                \"total_net\": \"384.24\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"17.11240000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"56\",\n                \"service_id\": \"66\",\n                \"servicecategory_id\": \"47\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"11.000000\",\n                \"total_quantity\": \"11.000000\",\n                \"unit_based_subtotal_charge\": \"27.50\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"27.50\",\n                \"total_charge\": \"27.50\",\n                \"total_cogs\": \"24.20\",\n                \"total_net\": \"3.30\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"57\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"4.000000\",\n                \"total_quantity\": \"4.000000\",\n                \"unit_based_subtotal_charge\": \"4.80\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"4.80\",\n                \"total_charge\": \"4.80\",\n                \"total_cogs\": \"3.20\",\n                \"total_net\": \"1.60\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"1.20000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"57\",\n                \"service_id\": \"65\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"120.000000\",\n                \"total_quantity\": \"120.000000\",\n                \"unit_based_subtotal_charge\": \"240.04\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"240.04\",\n                \"total_charge\": \"240.04\",\n                \"total_cogs\": \"120.02\",\n                \"total_net\": \"120.01\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.00030000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"57\",\n                \"service_id\": \"67\",\n                \"servicecategory_id\": \"47\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"3.111100\",\n                \"total_quantity\": \"3.111100\",\n                \"unit_based_subtotal_charge\": \"7.78\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"7.78\",\n                \"total_charge\": \"7.78\",\n                \"total_cogs\": \"6.84\",\n                \"total_net\": \"0.93\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"58\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"1.999900\",\n                \"total_quantity\": \"1.999900\",\n                \"unit_based_subtotal_charge\": \"2.40\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"2.40\",\n                \"total_charge\": \"2.40\",\n                \"total_cogs\": \"1.60\",\n                \"total_net\": \"0.80\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"1.20000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"58\",\n                \"service_id\": \"65\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"3.000000\",\n                \"total_quantity\": \"3.000000\",\n                \"unit_based_subtotal_charge\": \"4.40\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"4.40\",\n                \"total_charge\": \"4.40\",\n                \"total_cogs\": \"33.33\",\n                \"total_net\": \"-28.93\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"1.46612903\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"58\",\n                \"service_id\": \"68\",\n                \"servicecategory_id\": \"48\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"7.100000\",\n                \"total_quantity\": \"7.100000\",\n                \"unit_based_subtotal_charge\": \"10.41\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"10.41\",\n                \"total_charge\": \"10.41\",\n                \"total_cogs\": \"78.88\",\n                \"total_net\": \"-68.47\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"1.46612903\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170825\",\n                \"account_id\": \"59\",\n                \"service_id\": \"68\",\n                \"servicecategory_id\": \"48\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"2.000000\",\n                \"total_quantity\": \"2.000000\",\n                \"unit_based_subtotal_charge\": \"5.00\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"5.00\",\n                \"total_charge\": \"5.00\",\n                \"total_cogs\": \"4.40\",\n                \"total_net\": \"0.60\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170826\",\n                \"account_id\": \"56\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"116.000000\",\n                \"total_quantity\": \"116.000000\",\n                \"unit_based_subtotal_charge\": \"1996.77\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"1996.77\",\n                \"total_charge\": \"1996.77\",\n                \"total_cogs\": \"1612.43\",\n                \"total_net\": \"384.33\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"17.21350000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170826\",\n                \"account_id\": \"56\",\n                \"service_id\": \"66\",\n                \"servicecategory_id\": \"47\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"11.000000\",\n                \"total_quantity\": \"11.000000\",\n                \"unit_based_subtotal_charge\": \"27.50\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"27.50\",\n                \"total_charge\": \"27.50\",\n                \"total_cogs\": \"24.20\",\n                \"total_net\": \"3.30\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170826\",\n                \"account_id\": \"57\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"119.798000\",\n                \"total_quantity\": \"119.798000\",\n                \"unit_based_subtotal_charge\": \"239.63\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"239.63\",\n                \"total_charge\": \"239.63\",\n                \"total_cogs\": \"119.82\",\n                \"total_net\": \"119.81\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.00030000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170826\",\n                \"account_id\": \"57\",\n                \"service_id\": \"67\",\n                \"servicecategory_id\": \"47\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"3.111100\",\n                \"total_quantity\": \"3.111100\",\n                \"unit_based_subtotal_charge\": \"7.78\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"7.78\",\n                \"total_charge\": \"7.78\",\n                \"total_cogs\": \"6.84\",\n                \"total_net\": \"0.93\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170826\",\n                \"account_id\": \"58\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"3.000000\",\n                \"total_quantity\": \"3.000000\",\n                \"unit_based_subtotal_charge\": \"7.50\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"7.50\",\n                \"total_charge\": \"7.50\",\n                \"total_cogs\": \"6.60\",\n                \"total_net\": \"0.90\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170827\",\n                \"account_id\": \"56\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"116.000000\",\n                \"total_quantity\": \"116.000000\",\n                \"unit_based_subtotal_charge\": \"1985.04\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"1985.04\",\n                \"total_charge\": \"1985.04\",\n                \"total_cogs\": \"1600.80\",\n                \"total_net\": \"384.24\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"17.11240000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170827\",\n                \"account_id\": \"56\",\n                \"service_id\": \"66\",\n                \"servicecategory_id\": \"47\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"21.000000\",\n                \"total_quantity\": \"21.000000\",\n                \"unit_based_subtotal_charge\": \"52.50\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"52.50\",\n                \"total_charge\": \"52.50\",\n                \"total_cogs\": \"46.20\",\n                \"total_net\": \"6.30\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170827\",\n                \"account_id\": \"57\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"120.000000\",\n                \"total_quantity\": \"120.000000\",\n                \"unit_based_subtotal_charge\": \"240.04\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"240.04\",\n                \"total_charge\": \"240.04\",\n                \"total_cogs\": \"120.02\",\n                \"total_net\": \"120.01\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.00030000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170827\",\n                \"account_id\": \"57\",\n                \"service_id\": \"67\",\n                \"servicecategory_id\": \"47\"\n            },\n            {\n                \"rate_id\": null,\n                \"subtotal_quantity\": \"5.111100\",\n                \"total_quantity\": \"5.111100\",\n                \"unit_based_subtotal_charge\": \"12.78\",\n                \"interval_based_subtotal_charge\": \"0.00\",\n                \"subtotal_charge\": \"12.78\",\n                \"total_charge\": \"12.78\",\n                \"total_cogs\": \"11.24\",\n                \"total_net\": \"1.53\",\n                \"min_commit_delta_quantity\": \"0.000000\",\n                \"min_commit_delta_charge\": \"0.00\",\n                \"adjustments\": [],\n                \"tier_breakdown\": [],\n                \"avg_unit_based_rate\": \"2.50000000\",\n                \"avg_interval_based_rate\": \"0.00000000\",\n                \"breakdown\": null,\n                \"day\": \"20170827\",\n                \"account_id\": \"58\",\n                \"service_id\": \"64\",\n                \"servicecategory_id\": \"46\"\n            }\n        ]\n    }\n}"}],"_postman_id":"60541713-c4f0-4a85-a5a1-10338b67217b"},{"name":"Get report resources","event":[{"listen":"test","script":{"id":"841e3663-d637-48a9-a9fd-190c5aa737a9","exec":["// pm.test(\"Status code is 200\", function () {","//     pm.response.to.have.status(200);","// });","","// let response = pm.response.text();","","// for (let i of responseBody.split('\\n')) {","//     if (i[0] === '{') {","//         response = JSON.parse(i);","//     }","// }","","// pm.test(\"Response contains report\", function () {","//     pm.expect(response.report).to.be.an('array');","//     pm.expect(response.report[0]).to.be.an('object');","//     pm.expect(response.report[0].meta).to.be.an('object');","//     pm.expect(response.report[0].error).to.be.a('boolean');","//     pm.expect(response.report[0].error).to.eql(false);","//     pm.expect(response.report[0].data).to.be.an('array');","// });"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"bba01f85-11bb-41e3-9ee5-482c87006de7","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReportDefinition)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"beb2157f-50f2-460f-9e73-a870119f9b10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/reportdata/:reportdefinition_id/resources?start={{start}}&end={{end}}&dimension=&depth=&filter[field]","description":"<p>⚠️ This endpoints are currently in alpha and may change at any time. Please don't use in production.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>service_ids</td>\n<td><em>string[]</em></td>\n<td>Key for the applicable service, only when <code>services</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>servicecategory_ids</td>\n<td><em>string[]</em></td>\n<td>Key for the applicable service category, only when <code>services</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>account_ids</td>\n<td><em>string[]</em></td>\n<td>Key for the applicable account, only when <code>accounts</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n<tr>\n<td>instance_values</td>\n<td><em>string[]</em></td>\n<td>Unique identifier for the applicable instance, only when <code>instances</code> is included in the <code>dimension</code> parameter</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","reportdata",":reportdefinition_id","resources"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The start of the date range (inclusive) you want to run the report for in <code>yyyy-mm-dd</code> format. Defaults to the current date.</p>\n","type":"text/plain"},"key":"start","value":"{{start}}"},{"description":{"content":"<p>The end of the date range (inclusive) you want to run the report for in <code>yyyy-mm-dd</code> format. Defaults to the current date.</p>\n","type":"text/plain"},"key":"end","value":"{{end}}"},{"description":{"content":"<p>The dimension you want to include in the output. One of <code>accounts</code>, <code>services</code> or <code>instances</code> (or a combination of those as a comma separated list). Defaults to <code>accounts,services</code>.</p>\n","type":"text/plain"},"key":"dimension","value":""},{"description":{"content":"<p>The depth in the report definition you want to report on. Defaults to 1.</p>\n","type":"text/plain"},"key":"depth","value":""},{"description":{"content":"<p>Optionally filter the output by the supplied field. Possible fields are <code>account_id</code>, <code>parent_account_id</code>, <code>service_id</code>, <code>servicecategory_id</code>, <code>instance</code>. This parameter can occur multiple times in a request to filter by multiple fields.</p>\n","type":"text/plain"},"key":"filter[field]","value":null}],"variable":[{"type":"any","value":"{{reportdefinition_id}}","key":"reportdefinition_id"}]}},"response":[{"id":"4f7c7f32-4107-4314-9013-536f64c8f230","name":"Get report resources","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/reports/:report_id/resources?start={{start}}&end={{end}}&dimension=&depth=&filter[field]","host":["{{base_url}}"],"path":["v2","reports",":report_id","resources"],"query":[{"key":"start","value":"{{start}}","description":"The start of the date range (inclusive) you want to run the report for in `yyyy-mm-dd` format. Defaults to the current date."},{"key":"end","value":"{{end}}","description":"The end of the date range (inclusive) you want to run the report for in `yyyy-mm-dd` format. Defaults to the current date."},{"key":"dimension","value":"","description":"The dimension you want to include in the output. One of `accounts`, `services` or `instances` (or a combination of those as a comma separated list). Defaults to `accounts,services`."},{"key":"depth","value":"","description":"The depth in the report definition you want to report on. Defaults to 1."},{"key":"filter[field]","value":null,"description":"Optionally filter the output by the supplied field. Possible fields are `account_id`, `parent_account_id`, `service_id`, `servicecategory_id`, `instance`. This parameter can occur multiple times in a request to filter by multiple fields."}],"variable":[{"id":"115f6738-117d-42b8-b3fb-0d24fdd90610","key":"report_id","value":"{{report_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 19 May 2022 15:18:39 GMT"},{"key":"Date","value":"Thu, 19 May 2022 15:18:39 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xb06af8bb6a763e3a51b21d09ecf25213"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xb06af8bb6a763e3a51b21d09ecf25213"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-7FWXzzZaoj11oW6oJrpo4ZK7WA2htUoP';style-src 'self' 'nonce-7FWXzzZaoj11oW6oJrpo4ZK7WA2htUoP';font-src 'self' data:"},{"key":"Request-Id","value":"106f8bc4-f6dc-4952-96df-07356d32a8db"}],"cookie":[],"responseTime":null,"body":"{\n    \"resources\": {\n        \"account_ids\": [\n            \"56\",\n            \"57\",\n            \"58\",\n            \"59\"\n        ],\n        \"service_ids\": [\n            \"64\",\n            \"65\",\n            \"66\",\n            \"67\",\n            \"68\"\n        ],\n        \"servicecategory_ids\": [\n            \"46\",\n            \"47\",\n            \"48\"\n        ]\n    }\n}"}],"_postman_id":"beb2157f-50f2-460f-9e73-a870119f9b10"}],"id":"e8fec1f3-e3a2-49f6-8661-d47053b5603b","_postman_id":"e8fec1f3-e3a2-49f6-8661-d47053b5603b","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"17bcfa71-77a9-44f8-bc10-b1b4ca4ef32a","id":"17bcfa71-77a9-44f8-bc10-b1b4ca4ef32a","name":"Reports","type":"folder"}}},{"name":"/reportstatuses","item":[{"name":"Retrieve a list of report statuses","event":[{"listen":"test","script":{"id":"b6051dba-eb8a-45de-8d83-3010c5b619d5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"80b3035d-e9ce-41fb-b2de-c8653f8da33a","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"268b3ce3-e731-42b6-85e9-d064f76faa5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/reportstatuses?include=&page[limit]=&page[offset]&sort&filter[attribute]=","urlObject":{"path":["v2","reportstatuses"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>dataset</code>, 'report'.</p>\n","type":"text/plain"},"key":"include","value":""},{"key":"page[limit]","value":""},{"key":"page[offset]","value":null},{"key":"sort","value":null},{"key":"filter[attribute]","value":""}],"variable":[]}},"response":[{"id":"b2f9d85b-3ef1-4abe-aee3-7fbed1b14e57","name":"Retrieve a list of report statuses","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/reportstatuses?include=&page[limit]=&page[offset]&sort&filter[attribute]","host":["{{base_url}}"],"path":["v2","reportstatuses"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `dataset`, 'report'."},{"key":"page[limit]","value":""},{"key":"page[offset]","value":null},{"key":"sort","value":null},{"key":"filter[attribute]","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 31 Oct 2022 14:51:47 GMT"},{"key":"Date","value":"Mon, 31 Oct 2022 14:51:47 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X21e63fed01d6d3e882a095c82a0fd1b8"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-qcpti4rOqtYiQo3Bd652LGeKFsM0R8Uh';style-src 'self' 'nonce-qcpti4rOqtYiQo3Bd652LGeKFsM0R8Uh';font-src 'self' data:"},{"key":"Request-Id","value":"2fae024a-c023-471c-bba0-6c0799bda853"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"reportstatus\",\n            \"id\": \"test.usage-20170825\",\n            \"attributes\": {\n                \"last_synced\": \"2022-09-29T07:19:19Z\",\n                \"last_prepared\": \"2022-10-24T10:41:58Z\",\n                \"column_status\": \"ok\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170825\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170825/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170825/dataset\"\n                    }\n                },\n                \"report\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170825/relationships/report\",\n                        \"related\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170825/report\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportstatus\",\n            \"id\": \"test.usage-20170826\",\n            \"attributes\": {\n                \"last_synced\": \"2022-09-29T07:19:19Z\",\n                \"last_prepared\": \"2022-10-24T10:41:58Z\",\n                \"column_status\": \"ok\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170826\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170826/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170826/dataset\"\n                    }\n                },\n                \"report\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170826/relationships/report\",\n                        \"related\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170826/report\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"reportstatus\",\n            \"id\": \"test.usage-20170827\",\n            \"attributes\": {\n                \"last_synced\": \"2022-09-29T07:19:19Z\",\n                \"last_prepared\": \"2022-10-24T10:41:58Z\",\n                \"column_status\": \"ok\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170827\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170827/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170827/dataset\"\n                    }\n                },\n                \"report\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170827/relationships/report\",\n                        \"related\": \"http://localhost:8012/v2/reportstatuses/test.usage-20170827/report\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 3,\n            \"count\": 3,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"http://localhost:8012/v2/reportstatuses?include=&page%5Blimit%5D=&sort=&filter%5Battribute%5D=&page%5Boffset%5D=1\",\n        \"first\": \"http://localhost:8012/v2/reportstatuses?include=&page%5Blimit%5D=&sort=&filter%5Battribute%5D=&page%5Boffset%5D=1\",\n        \"last\": \"http://localhost:8012/v2/reportstatuses?include=&page%5Blimit%5D=&sort=&filter%5Battribute%5D=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"268b3ce3-e731-42b6-85e9-d064f76faa5c"}],"id":"e2d1deec-4caa-453a-a278-f5ad74fbd28b","_postman_id":"e2d1deec-4caa-453a-a278-f5ad74fbd28b","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"17bcfa71-77a9-44f8-bc10-b1b4ca4ef32a","id":"17bcfa71-77a9-44f8-bc10-b1b4ca4ef32a","name":"Reports","type":"folder"}}}],"id":"17bcfa71-77a9-44f8-bc10-b1b4ca4ef32a","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"73c90f97-c4b8-463c-921b-ad1b99739f84","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c14689c7-1c54-4bcf-92fe-b22e7f7a848e","type":"text/javascript","exec":[""]}}],"_postman_id":"17bcfa71-77a9-44f8-bc10-b1b4ca4ef32a","description":""},{"name":"Services","item":[{"name":"/servicecategories","item":[{"name":"Retrieve a list of service categories","event":[{"listen":"test","script":{"id":"b03bf134-5c63-4e1b-9ff8-bf17bf8ea5d4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});","","pm.environment.set(\"servicecategory_id\", response.data[0].id);","console.log('SET servicecategory_id: ' + pm.environment.get(\"servicecategory_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"28f26848-958f-44f4-ba00-5a32afe9ff59","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r"],"type":"text/javascript"}}],"id":"3e434bf7-8568-49ff-8d84-b305dd4b4cff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/servicecategories?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","servicecategories"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>services</code>, <code>adjustments</code>, <code>budgetitems</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[],"_postman_id":"3e434bf7-8568-49ff-8d84-b305dd4b4cff"},{"name":"Add a new service category","event":[{"listen":"test","script":{"id":"0455abda-82b0-4d6f-bfd3-c5109c608938","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('servicecategory');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.be.an('string');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"servicecategory_id\", response.data.id);","console.log('SET servicecategory_id: ' + pm.environment.get(\"servicecategory_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"393f05ae-7e90-4eed-997f-a5bca4382d11","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"747df915-26c8-4a75-9f3d-f3f288c10af4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"servicecategory\",\n        \"attributes\": {\n            \"name\": \"Test service category - 601\"\n        }\n    }\n}"},"url":"{{base_url}}/v2/servicecategories","urlObject":{"path":["v2","servicecategories"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"5f1e3c63-52ee-47d6-8d88-366725246935","name":"Add a new service category","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"servicecategory\",\n        \"attributes\": {\n            \"name\": \"Test service category - 763\"\n        }\n    }\n}"},"url":"{{base_url}}/v2/servicecategories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 09:30:20 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/ServiceCategory/ServiceCategorys"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-0DzkV8bDCIFxi4Vamt87Z5Ho04QIRRwW';style-src 'self' 'nonce-0DzkV8bDCIFxi4Vamt87Z5Ho04QIRRwW';font-src 'self' data:"},{"key":"Request-Id","value":"f89dfdb8-9f5e-4b2c-89dd-0f202d66bed5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"servicecategory\",\n        \"id\": \"754\",\n        \"attributes\": {\n            \"name\": \"Test service category - 347\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/servicecategories/754\"\n        },\n        \"relationships\": {\n            \"services\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/servicecategories/754/relationships/services\",\n                    \"related\": \"https://dev.exivity.net/v2/servicecategories/754/services\"\n                }\n            },\n            \"adjustments\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/servicecategories/754/relationships/adjustments\",\n                    \"related\": \"https://dev.exivity.net/v2/servicecategories/754/adjustments\"\n                }\n            },\n            \"budgetitems\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/servicecategories/754/relationships/budgetitems\",\n                    \"related\": \"https://dev.exivity.net/v2/servicecategories/754/budgetitems\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"747df915-26c8-4a75-9f3d-f3f288c10af4"},{"name":"Retrieve a service category","event":[{"listen":"test","script":{"id":"fa087e08-1062-4850-ae63-f1fdd6a45f62","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('servicecategory');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.be.a('string')","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5e7be7c2-9edc-4a52-a77c-e086d45cdb5e","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"dfa752ee-a42d-43b2-8813-5c18e61fb492","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/servicecategories/:servicecategory_id","urlObject":{"path":["v2","servicecategories",":servicecategory_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"5a218be4-5489-4b53-87bf-a6f655eb4919","type":"string","value":"{{servicecategory_id}}","key":"servicecategory_id"}]}},"response":[{"id":"4336aa4f-08d6-4edd-97a2-de2d79131214","name":"Retrieve a service category","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/servicecategories/:servicecategory_id","host":["{{base_url}}"],"path":["v2","servicecategories",":servicecategory_id"],"variable":[{"id":"5a218be4-5489-4b53-87bf-a6f655eb4919","key":"servicecategory_id","value":"{{servicecategory_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 09:12:25 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-JOWIy3OHM3hLVfQYStEw67ObOo8BTxUz';style-src 'self' 'nonce-JOWIy3OHM3hLVfQYStEw67ObOo8BTxUz';font-src 'self' data:"},{"key":"Request-Id","value":"c668d514-295d-46f5-8034-03f6f0a0f058"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"servicecategory\",\n        \"id\": \"3\",\n        \"attributes\": {\n            \"name\": \"Web Services\"\n        },\n        \"links\": {\n            \"self\": \"https://localhost/v2/servicecategories/3\"\n        },\n        \"relationships\": {\n            \"services\": {\n                \"links\": {\n                    \"self\": \"https://localhost/v2/servicecategories/3/relationships/services\",\n                    \"related\": \"https://localhost/v2/servicecategories/3/services\"\n                }\n            },\n            \"adjustments\": {\n                \"links\": {\n                    \"self\": \"https://localhost/v2/servicecategories/3/relationships/adjustments\",\n                    \"related\": \"https://localhost/v2/servicecategories/3/adjustments\"\n                }\n            },\n            \"budgetitems\": {\n                \"links\": {\n                    \"self\": \"https://localhost/v2/servicecategories/3/relationships/budgetitems\",\n                    \"related\": \"https://localhost/v2/servicecategories/3/budgetitems\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"dfa752ee-a42d-43b2-8813-5c18e61fb492"},{"name":"Update a service category","event":[{"listen":"test","script":{"id":"582f0ba4-e20c-4ce2-8b12-970ff2f0ebd9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('servicecategory');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"servicecategory_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.be.an('string');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"251c348e-7461-4b36-990a-a4f7bd76384a","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"e547bbcf-4cb4-4cff-a8af-f7d9c262c42d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n        \"type\":\"servicecategory\",\r\n        \"id\": \"{{servicecategory_id}}\",\r\n        \"attributes\": {\r\n            \"name\": \"Test service category - 472\"\r\n        }\r\n    }\r\n}\r\n"},"url":"{{base_url}}/v2/servicecategories/:servicecategory_id","urlObject":{"path":["v2","servicecategories",":servicecategory_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"a8d1bdc4-fe11-458c-91e0-6b1d15e752a8","type":"string","value":"{{servicecategory_id}}","key":"servicecategory_id"}]}},"response":[],"_postman_id":"e547bbcf-4cb4-4cff-a8af-f7d9c262c42d"},{"name":"Delete a service category","event":[{"listen":"test","script":{"id":"09fade95-bc3a-45ce-b9a2-e4c5161667a8","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET servicecategory_id');","pm.environment.unset(\"servicecategory_id\");",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"fc1dbae3-8634-4258-a718-7287634e12fb","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"cddbd679-2b6a-4626-8fa3-4baec7c2e365","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/servicecategories/:servicecategory_id","urlObject":{"path":["v2","servicecategories",":servicecategory_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"04a241c7-e541-45da-a792-5821bbb68dca","type":"string","value":"{{servicecategory_id}}","key":"servicecategory_id"}]}},"response":[],"_postman_id":"cddbd679-2b6a-4626-8fa3-4baec7c2e365"}],"id":"6f916e9a-3a8a-4ab2-af7d-670545e73be4","description":"<p>Atomic support: ✔️</p>\n<p>Categories services can be grouped under. A category can contain multiple services, but each service can only be in one category.</p>\n<p>Examples of categories: <code>Software</code>, <code>Web services</code></p>\n<h4 id=\"the-service-category-object\">The Service Category Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required, unique name for service category. Max 255 chars.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>services</td>\n<td>hasMany</td>\n<td>service</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>adjustments</td>\n<td>hasMany</td>\n<td>adjustment</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>budgetitems</td>\n<td>hasMany</td>\n<td>budgetitem</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6f50f330-1c27-46a8-aea9-0905b49c5b32","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f80cf94e-2692-4ac3-a849-78e0eb22aa92","type":"text/javascript","exec":[""]}}],"_postman_id":"6f916e9a-3a8a-4ab2-af7d-670545e73be4"},{"name":"/services","item":[{"name":"Retrieve a list of services","event":[{"listen":"test","script":{"id":"74604837-55e4-43b3-842a-d19fa4e56767","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","// Check response","const response = pm.response.json();","console.log(response);","pm.test(\"Response contains data\", function () {","    pm.response.to.be.json;","    pm.expect(response.data).to.be.an('array');","});","","// Check first service","var service = response.data[0];","pm.test(\"Service type is correct\", function () {","    pm.expect(service.type).to.eql('service');","});","pm.test(\"Service ID is set\", function () {","    pm.expect(service.id).to.not.be.undefined;","});","pm.test(\"Service attributes are correct\", function () {","    pm.expect(service.attributes).to.be.an('object');","    pm.expect(service.attributes).to.have.property(\"key\");","    pm.expect(service.attributes).to.have.property(\"description\");","    pm.expect(service.attributes).to.have.property(\"unit_label\");","    pm.expect(service.attributes).to.have.property(\"dset\");","    pm.expect(service.attributes).to.have.property(\"type\");","    pm.expect(service.attributes).to.have.property(\"usage_col\");","    pm.expect(service.attributes).to.have.property(\"consumption_col\");","    pm.expect(service.attributes).to.have.property(\"instance_col\");","    pm.expect(service.attributes).to.have.property(\"interval\");","    pm.expect(service.attributes).to.have.property(\"charge_type\");","    pm.expect(service.attributes).to.have.property(\"cogs_type\");","    pm.expect(service.attributes).to.have.property(\"proration_type\");","    pm.expect(service.attributes).to.have.property(\"created_at\");","    pm.expect(service.attributes).to.have.property(\"updated_at\");","    pm.expect(service.attributes).to.have.property(\"seen_at\");","    pm.expect(service.attributes).to.have.property(\"orphan\");","    pm.expect(service.attributes).to.have.property(\"charge_model\");","","});","","pm.environment.set('first_service_id', response.data[0].id);","console.log('SET first_service_id: ' + pm.environment.get(\"first_service_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f583d34d-4305-4ad4-b406-2fe7c6376906","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"4459c66d-970f-4854-9b9b-591bc523079f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/services?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","services"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>servicecategory</code>, <code>rates</code>, <code>adjustments</code>, <code>dataset</code>, <code>metadata</code>, <code>budgetitems</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"ad5828a6-60f7-4f5f-94c6-bb1bb6908ff8","name":"Retrieve a list of services","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/services?page[limit]&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","services"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `servicecategory`, `rates`, `adjustments`, `dataset`, `metadata`, `budgetitems`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 09:10:24 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X5bd16f6b7b0b83dc1806691c31aad821"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X5bd16f6b7b0b83dc1806691c31aad821"},{"key":"ETag","value":"\"f82b7f4f6c0b921c60dc337f918fcc38\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-V6J2xuiWVWmRBA9UsmIKgHXd4Husb1Qe';style-src 'self' 'nonce-V6J2xuiWVWmRBA9UsmIKgHXd4Husb1Qe';font-src 'self' data:"},{"key":"Request-Id","value":"f3bd58d2-c700-4661-8025-cb7784e4a8b5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"service\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"key\": \"CRM Enterprise\",\n                \"description\": \"License for CRM Enterprise\",\n                \"unit_label\": \"Licenses\",\n                \"service_type\": \"service_name_in_data\",\n                \"usage_col\": \"service_name\",\n                \"consumption_col\": \"quantity\",\n                \"instance_col\": \"UniqueID\",\n                \"interval\": \"day\",\n                \"cogs_type\": \"automatic\",\n                \"proration_type\": \"none\",\n                \"charge_model\": null,\n                \"charge_model_specific_day\": null,\n                \"created_at\": \"2024-12-19T13:47:11Z\",\n                \"updated_at\": \"2024-12-19T12:47:10Z\",\n                \"seen_at\": \"(not supported yet)\",\n                \"charge_type\": \"automatic\",\n                \"orphan\": false\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/services/1\"\n            },\n            \"relationships\": {\n                \"adjustments\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/1/relationships/adjustments\",\n                        \"related\": \"http://localhost:8012/v2/services/1/adjustments\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/1/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/services/1/dataset\"\n                    }\n                },\n                \"metadata\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/1/relationships/metadata\",\n                        \"related\": \"http://localhost:8012/v2/services/1/metadata\"\n                    }\n                },\n                \"servicecategory\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/1/relationships/servicecategory\",\n                        \"related\": \"http://localhost:8012/v2/services/1/servicecategory\"\n                    }\n                },\n                \"rates\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/1/relationships/rates\",\n                        \"related\": \"http://localhost:8012/v2/services/1/rates\"\n                    }\n                },\n                \"budgetitems\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/1/relationships/budgetitems\",\n                        \"related\": \"http://localhost:8012/v2/services/1/budgetitems\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"service\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"key\": \"MS Office Pro\",\n                \"description\": \"Microsoft Office Professional\",\n                \"unit_label\": \"Licenses\",\n                \"service_type\": \"service_name_in_data\",\n                \"usage_col\": \"service_name\",\n                \"consumption_col\": \"quantity\",\n                \"instance_col\": \"UniqueID\",\n                \"interval\": \"month\",\n                \"cogs_type\": \"automatic\",\n                \"proration_type\": \"none\",\n                \"charge_model\": \"peak\",\n                \"charge_model_specific_day\": null,\n                \"created_at\": \"2024-12-19T13:47:11Z\",\n                \"updated_at\": \"2024-12-19T12:47:10Z\",\n                \"seen_at\": \"(not supported yet)\",\n                \"charge_type\": \"automatic\",\n                \"orphan\": false\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/services/2\"\n            },\n            \"relationships\": {\n                \"adjustments\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/2/relationships/adjustments\",\n                        \"related\": \"http://localhost:8012/v2/services/2/adjustments\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/2/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/services/2/dataset\"\n                    }\n                },\n                \"metadata\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/2/relationships/metadata\",\n                        \"related\": \"http://localhost:8012/v2/services/2/metadata\"\n                    }\n                },\n                \"servicecategory\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/2/relationships/servicecategory\",\n                        \"related\": \"http://localhost:8012/v2/services/2/servicecategory\"\n                    }\n                },\n                \"rates\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/2/relationships/rates\",\n                        \"related\": \"http://localhost:8012/v2/services/2/rates\"\n                    }\n                },\n                \"budgetitems\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/2/relationships/budgetitems\",\n                        \"related\": \"http://localhost:8012/v2/services/2/budgetitems\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"service\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"key\": \"VM Large W0\",\n                \"description\": \"W0pping Large VM\",\n                \"unit_label\": \"VM's\",\n                \"service_type\": \"service_name_in_data\",\n                \"usage_col\": \"service_name\",\n                \"consumption_col\": \"quantity\",\n                \"instance_col\": \"UniqueID\",\n                \"interval\": \"individually\",\n                \"cogs_type\": \"automatic\",\n                \"proration_type\": \"none\",\n                \"charge_model\": null,\n                \"charge_model_specific_day\": null,\n                \"created_at\": \"2024-12-19T13:47:11Z\",\n                \"updated_at\": \"2024-12-19T12:47:10Z\",\n                \"seen_at\": \"(not supported yet)\",\n                \"charge_type\": \"automatic\",\n                \"orphan\": false\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/services/3\"\n            },\n            \"relationships\": {\n                \"adjustments\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/3/relationships/adjustments\",\n                        \"related\": \"http://localhost:8012/v2/services/3/adjustments\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/3/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/services/3/dataset\"\n                    }\n                },\n                \"metadata\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/3/relationships/metadata\",\n                        \"related\": \"http://localhost:8012/v2/services/3/metadata\"\n                    }\n                },\n                \"servicecategory\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/3/relationships/servicecategory\",\n                        \"related\": \"http://localhost:8012/v2/services/3/servicecategory\"\n                    }\n                },\n                \"rates\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/3/relationships/rates\",\n                        \"related\": \"http://localhost:8012/v2/services/3/rates\"\n                    }\n                },\n                \"budgetitems\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/3/relationships/budgetitems\",\n                        \"related\": \"http://localhost:8012/v2/services/3/budgetitems\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"service\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"key\": \"VM Small T1\",\n                \"description\": \"Tiny Small VM\",\n                \"unit_label\": \"VM's\",\n                \"service_type\": \"service_name_in_data\",\n                \"usage_col\": \"service_name\",\n                \"consumption_col\": \"quantity\",\n                \"instance_col\": \"UniqueID\",\n                \"interval\": \"individually\",\n                \"cogs_type\": \"automatic\",\n                \"proration_type\": \"none\",\n                \"charge_model\": null,\n                \"charge_model_specific_day\": null,\n                \"created_at\": \"2024-12-19T13:47:11Z\",\n                \"updated_at\": \"2024-12-19T12:47:10Z\",\n                \"seen_at\": \"(not supported yet)\",\n                \"charge_type\": \"automatic\",\n                \"orphan\": false\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/services/4\"\n            },\n            \"relationships\": {\n                \"adjustments\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/4/relationships/adjustments\",\n                        \"related\": \"http://localhost:8012/v2/services/4/adjustments\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/4/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/services/4/dataset\"\n                    }\n                },\n                \"metadata\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/4/relationships/metadata\",\n                        \"related\": \"http://localhost:8012/v2/services/4/metadata\"\n                    }\n                },\n                \"servicecategory\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/4/relationships/servicecategory\",\n                        \"related\": \"http://localhost:8012/v2/services/4/servicecategory\"\n                    }\n                },\n                \"rates\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/4/relationships/rates\",\n                        \"related\": \"http://localhost:8012/v2/services/4/rates\"\n                    }\n                },\n                \"budgetitems\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/4/relationships/budgetitems\",\n                        \"related\": \"http://localhost:8012/v2/services/4/budgetitems\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"service\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"key\": \"Website Std.\",\n                \"description\": \"Standard Website Domain\",\n                \"unit_label\": \"Websites\",\n                \"service_type\": \"service_name_in_data\",\n                \"usage_col\": \"service_name\",\n                \"consumption_col\": \"quantity\",\n                \"instance_col\": \"UniqueID\",\n                \"interval\": \"month\",\n                \"cogs_type\": \"automatic\",\n                \"proration_type\": \"full\",\n                \"charge_model\": \"peak\",\n                \"charge_model_specific_day\": null,\n                \"created_at\": \"2024-12-19T13:47:11Z\",\n                \"updated_at\": \"2024-12-19T12:47:10Z\",\n                \"seen_at\": \"(not supported yet)\",\n                \"charge_type\": \"automatic\",\n                \"orphan\": false\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/services/5\"\n            },\n            \"relationships\": {\n                \"adjustments\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/5/relationships/adjustments\",\n                        \"related\": \"http://localhost:8012/v2/services/5/adjustments\"\n                    }\n                },\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/5/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/services/5/dataset\"\n                    }\n                },\n                \"metadata\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/5/relationships/metadata\",\n                        \"related\": \"http://localhost:8012/v2/services/5/metadata\"\n                    }\n                },\n                \"servicecategory\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/5/relationships/servicecategory\",\n                        \"related\": \"http://localhost:8012/v2/services/5/servicecategory\"\n                    }\n                },\n                \"rates\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/5/relationships/rates\",\n                        \"related\": \"http://localhost:8012/v2/services/5/rates\"\n                    }\n                },\n                \"budgetitems\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/services/5/relationships/budgetitems\",\n                        \"related\": \"http://localhost:8012/v2/services/5/budgetitems\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 5,\n            \"count\": 5,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"http://localhost:8012/v2/services?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"http://localhost:8012/v2/services?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"http://localhost:8012/v2/services?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"4459c66d-970f-4854-9b9b-591bc523079f"},{"name":"Add a new service","event":[{"listen":"test","script":{"id":"225d06a8-b337-4994-a2d2-53bc5d2757f9","exec":["console.log('GET servicecategory_id: ' + pm.environment.get(\"servicecategory_id\"));","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","// Check response","const response = pm.response.json();","console.log(response);","","console.log(response);","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","});","","// Check service","pm.test(\"Service type is correct\", function () {","    pm.expect(response.data.type).to.eql('service');","});","pm.test(\"Service ID is set\", function () {","    pm.expect(response.data.id).to.not.be.undefined;","});","pm.test(\"Service attributes are correct\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    ","    pm.expect(response.data.attributes).to.have.property(\"key\");","    pm.expect(response.data.attributes).to.have.property(\"description\");","    pm.expect(response.data.attributes).to.have.property(\"unit_label\");","    pm.expect(response.data.attributes).to.have.property(\"dset\");","    pm.expect(response.data.attributes).to.have.property(\"type\");","    pm.expect(response.data.attributes).to.have.property(\"usage_col\");","    pm.expect(response.data.attributes).to.have.property(\"consumption_col\");","    pm.expect(response.data.attributes).to.have.property(\"instance_col\");","    pm.expect(response.data.attributes).to.have.property(\"interval\");","    pm.expect(response.data.attributes).to.have.property(\"charge_type\");","    pm.expect(response.data.attributes).to.have.property(\"cogs_type\");","    pm.expect(response.data.attributes).to.have.property(\"proration_type\");","    pm.expect(response.data.attributes).to.have.property(\"created_at\");","    pm.expect(response.data.attributes).to.have.property(\"updated_at\");","    pm.expect(response.data.attributes).to.have.property(\"seen_at\");","    pm.expect(response.data.attributes).to.have.property(\"orphan\");","    pm.expect(response.data.attributes).to.have.property(\"charge_model\");","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"service_id\", response.data.id);","console.log('SET service_id: ' + pm.environment.get(\"service_id\"));","pm.environment.set(\"service_key\", response.data.attributes.key);","console.log('SET service_key: ' + pm.environment.get(\"service_key\"));"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"fae40694-4536-4088-9497-1856c6b1733d","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireServiceCategory)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r"],"type":"text/javascript","packages":{}}}],"id":"cc78102d-77cd-4bf9-bb1f-06b4a181efed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"service\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"key\": \"test  - 609\",\r\n\t\t\t\"description\": \"test service\",\r\n\t\t\t\"unit_label\": \"hours\",\r\n\t\t\t\"service_type\": \"service_name_in_header\",\r\n\t\t\t\"usage_col\": \"unique_key\",\r\n\t\t\t\"consumption_col\": \"quantity\",\r\n\t\t\t\"instance_col\": \"hostname\",\r\n\t\t\t\"interval\": \"month\",\r\n\t\t\t\"charge_type\": \"manual\",\r\n\t\t\t\"cogs_type\": \"none\",\r\n\t\t\t\"proration_type\": \"full\",\r\n\t\t\t\"charge_model\": \"peak\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"dataset\": {\r\n                \"data\": {\r\n\t\t\t\t\t\"type\": \"dataset\",\r\n\t\t\t\t\t\"id\": \"{{dset_id}}\"\r\n\t\t\t\t}\r\n            },\r\n            \"servicecategory\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"servicecategory\",\r\n\t\t\t\t\t\"id\": \"{{servicecategory_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/services","urlObject":{"path":["v2","services"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"cecf5578-c089-4c33-acb5-eaea5a1581da","name":"Add a new service","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"service\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"key\": \"test  - 621\",\r\n\t\t\t\"description\": \"test service\",\r\n\t\t\t\"unit_label\": \"hours\",\r\n\t\t\t\"service_type\": \"service_name_in_header\",\r\n\t\t\t\"usage_col\": \"unique_key\",\r\n\t\t\t\"consumption_col\": \"quantity\",\r\n\t\t\t\"instance_col\": \"hostname\",\r\n\t\t\t\"interval\": \"month\",\r\n\t\t\t\"charge_type\": \"manual\",\r\n\t\t\t\"cogs_type\": \"none\",\r\n\t\t\t\"proration_type\": \"full\",\r\n\t\t\t\"charge_model\": \"peak\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"dataset\": {\r\n                \"data\": {\r\n\t\t\t\t\t\"type\": \"dataset\",\r\n\t\t\t\t\t\"id\": \"{{dset_id}}\"\r\n\t\t\t\t}\r\n            },\r\n            \"servicecategory\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"servicecategory\",\r\n\t\t\t\t\t\"id\": \"{{servicecategory_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/services"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Location","value":"http://localhost:8012/v2/Service/Services"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 09:08:20 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X5fdea33cfda671f244ab4cf3ec1767b1"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X5fdea33cfda671f244ab4cf3ec1767b1"},{"key":"ETag","value":"\"05508e23fa939d62d479ee080cc16582\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-J5GLuXo4G91lFQWBJV43MgBPyRKmzehf';style-src 'self' 'nonce-J5GLuXo4G91lFQWBJV43MgBPyRKmzehf';font-src 'self' data:"},{"key":"Request-Id","value":"9a97fca3-25d0-4bc7-97a0-70e7c279bba5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"service\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"key\": \"test  - 77\",\n            \"description\": \"test service\",\n            \"unit_label\": \"hours\",\n            \"service_type\": \"service_name_in_header\",\n            \"usage_col\": \"unique_key\",\n            \"consumption_col\": \"quantity\",\n            \"instance_col\": \"hostname\",\n            \"interval\": \"month\",\n            \"cogs_type\": \"none\",\n            \"proration_type\": \"full\",\n            \"charge_model\": \"peak\",\n            \"charge_model_specific_day\": null,\n            \"created_at\": \"2025-01-13T09:08:21Z\",\n            \"updated_at\": \"2025-01-13T09:08:20Z\",\n            \"seen_at\": \"(not supported yet)\",\n            \"charge_type\": \"manual\",\n            \"orphan\": false\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/services/9\"\n        },\n        \"relationships\": {\n            \"adjustments\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/9/relationships/adjustments\",\n                    \"related\": \"http://localhost:8012/v2/services/9/adjustments\"\n                }\n            },\n            \"dataset\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/9/relationships/dataset\",\n                    \"related\": \"http://localhost:8012/v2/services/9/dataset\"\n                }\n            },\n            \"metadata\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/9/relationships/metadata\",\n                    \"related\": \"http://localhost:8012/v2/services/9/metadata\"\n                }\n            },\n            \"servicecategory\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/9/relationships/servicecategory\",\n                    \"related\": \"http://localhost:8012/v2/services/9/servicecategory\"\n                }\n            },\n            \"rates\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/9/relationships/rates\",\n                    \"related\": \"http://localhost:8012/v2/services/9/rates\"\n                }\n            },\n            \"budgetitems\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/9/relationships/budgetitems\",\n                    \"related\": \"http://localhost:8012/v2/services/9/budgetitems\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"cc78102d-77cd-4bf9-bb1f-06b4a181efed"},{"name":"Retrieve a service","event":[{"listen":"test","script":{"id":"b70344aa-ab23-479d-831e-7cd7f04edce6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('service');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"service_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    ","    pm.expect(response.data.attributes).to.have.property('key');","    pm.expect(response.data.attributes).to.have.property('description');","    pm.expect(response.data.attributes).to.have.property('unit_label');","    pm.expect(response.data.attributes).to.have.property('dset');","    pm.expect(response.data.attributes).to.have.property('type');","    pm.expect(response.data.attributes).to.have.property('usage_col');","    pm.expect(response.data.attributes).to.have.property('consumption_col');","    pm.expect(response.data.attributes).to.have.property('instance_col');","    pm.expect(response.data.attributes).to.have.property('interval');","    pm.expect(response.data.attributes).to.have.property('charge_type');","    pm.expect(response.data.attributes).to.have.property('cogs_type');","    pm.expect(response.data.attributes).to.have.property('proration_type');","    pm.expect(response.data.attributes).to.have.property('created_at');","    pm.expect(response.data.attributes).to.have.property('updated_at');","    pm.expect(response.data.attributes).to.have.property('seen_at');","    pm.expect(response.data.attributes).to.have.property('orphan');","    pm.expect(response.data.attributes).to.have.property('charge_model');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c5eea16f-4c2a-4516-b2c8-e6852971d8e2","exec":[""],"type":"text/javascript"}}],"id":"54f16c32-cfcf-4f76-bee4-75cb58d1e525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/services/:service_id?include","urlObject":{"path":["v2","services",":service_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>servicecategory</code>, <code>rates</code>, <code>adjustments</code>, <code>dataset</code>, <code>metadata</code>.</p>\n","type":"text/plain"},"key":"include","value":null}],"variable":[{"id":"15e0770d-ea28-4e0a-9991-a6135347e0c3","type":"string","value":"{{service_id}}","key":"service_id"}]}},"response":[{"id":"ed168dfd-faf4-4bbd-9f13-9aa230ce0268","name":"Retrieve a service","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/services/:service_id?include","host":["{{base_url}}"],"path":["v2","services",":service_id"],"query":[{"key":"include","value":null,"description":"Include additional related resources. Possible values: `servicecategory`, `rates`, `adjustments`, `dataset`, `metadata`."}],"variable":[{"key":"service_id","value":"{{service_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 09:10:56 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xca507ae746b42396dcf0e6d8e3cdc89d"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xca507ae746b42396dcf0e6d8e3cdc89d"},{"key":"ETag","value":"\"c00e16499af45c6d30802dccdf8e22ae\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-o3d64rAG9n55o1wNIesv3Ic05kmyhjNT';style-src 'self' 'nonce-o3d64rAG9n55o1wNIesv3Ic05kmyhjNT';font-src 'self' data:"},{"key":"Request-Id","value":"817c574a-6848-44da-9668-b3e64b452fb7"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"service\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"key\": \"CRM Enterprise\",\n            \"description\": \"License for CRM Enterprise\",\n            \"unit_label\": \"Licenses\",\n            \"service_type\": \"service_name_in_data\",\n            \"usage_col\": \"service_name\",\n            \"consumption_col\": \"quantity\",\n            \"instance_col\": \"UniqueID\",\n            \"interval\": \"day\",\n            \"cogs_type\": \"automatic\",\n            \"proration_type\": \"none\",\n            \"charge_model\": null,\n            \"charge_model_specific_day\": null,\n            \"created_at\": \"2024-12-19T13:47:11Z\",\n            \"updated_at\": \"2024-12-19T12:47:10Z\",\n            \"seen_at\": \"(not supported yet)\",\n            \"charge_type\": \"automatic\",\n            \"orphan\": false\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/services/1\"\n        },\n        \"relationships\": {\n            \"adjustments\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/1/relationships/adjustments\",\n                    \"related\": \"http://localhost:8012/v2/services/1/adjustments\"\n                }\n            },\n            \"dataset\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/1/relationships/dataset\",\n                    \"related\": \"http://localhost:8012/v2/services/1/dataset\"\n                }\n            },\n            \"metadata\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/1/relationships/metadata\",\n                    \"related\": \"http://localhost:8012/v2/services/1/metadata\"\n                }\n            },\n            \"servicecategory\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/1/relationships/servicecategory\",\n                    \"related\": \"http://localhost:8012/v2/services/1/servicecategory\"\n                }\n            },\n            \"rates\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/1/relationships/rates\",\n                    \"related\": \"http://localhost:8012/v2/services/1/rates\"\n                }\n            },\n            \"budgetitems\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/services/1/relationships/budgetitems\",\n                    \"related\": \"http://localhost:8012/v2/services/1/budgetitems\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"54f16c32-cfcf-4f76-bee4-75cb58d1e525"},{"name":"Update a service","event":[{"listen":"test","script":{"id":"15967d05-87f3-4d11-9661-56c821dae926","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('service');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"service_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    ","    pm.expect(response.data.attributes).to.have.property('key');","    pm.expect(response.data.attributes).to.have.property('description');","    pm.expect(response.data.attributes).to.have.property('unit_label');","    pm.expect(response.data.attributes).to.have.property('dset');","    pm.expect(response.data.attributes).to.have.property('type');","    pm.expect(response.data.attributes).to.have.property('usage_col');","    pm.expect(response.data.attributes).to.have.property('consumption_col');","    pm.expect(response.data.attributes).to.have.property('instance_col');","    pm.expect(response.data.attributes).to.have.property('interval');","    pm.expect(response.data.attributes).to.have.property('charge_type');","    pm.expect(response.data.attributes).to.have.property('cogs_type');","    pm.expect(response.data.attributes).to.have.property('proration_type');","    pm.expect(response.data.attributes).to.have.property('created_at');","    pm.expect(response.data.attributes).to.have.property('updated_at');","    pm.expect(response.data.attributes).to.have.property('seen_at');","    pm.expect(response.data.attributes).to.have.property('orphan');","    pm.expect(response.data.attributes).to.have.property('charge_model');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"61730459-87eb-4973-82d4-cbbfcf4fef42","exec":[""],"type":"text/javascript"}}],"id":"7e7b0aaf-8ce7-44c8-926d-ccb6ea1a7067","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"service\",\n        \"id\": \"{{service_id}}\",\n        \"attributes\": {\n            \"key\": \"{{service_key}}\",\n            \"description\": \"modified test service\",\n            \"unit_label\": \"hours\",\n\t\t\t\"dset\": \"{{dset_id}}\",\n\t\t\t\"type\": \"service_name_in_header\",\n\t\t\t\"usage_col\": \"unique_key\",\n\t\t\t\"consumption_col\": \"quantity\",\n\t\t\t\"instance_col\": \"hostname\",\n\t\t\t\"interval\": \"month\",\n\t\t\t\"charge_type\": \"manual_per_unit\",\n\t\t\t\"cogs_type\": \"none\",\n\t\t\t\"proration_type\": \"full\",\n\t\t\t\"charge_model\": \"average\"\n        }\n    }\n}"},"url":"{{base_url}}/v2/services/:service_id","urlObject":{"path":["v2","services",":service_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"c9df6026-3d90-4148-8a91-7903a171047e","type":"string","value":"{{service_id}}","key":"service_id"}]}},"response":[],"_postman_id":"7e7b0aaf-8ce7-44c8-926d-ccb6ea1a7067"},{"name":"Prepare affected reports","event":[{"listen":"test","script":{"id":"4acb5cd8-828b-4ae6-8265-18846e65a041","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","console.log(pm.response);"],"type":"text/javascript"}}],"id":"d41f488d-fca7-4001-9a9e-1943707c36ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/services/:service_id/prepareAffectedReports","urlObject":{"path":["v2","services",":service_id","prepareAffectedReports"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"45ebacbc-64c9-4918-83cf-a066d0d28456","type":"string","value":"{{service_id}}","key":"service_id"}]}},"response":[],"_postman_id":"d41f488d-fca7-4001-9a9e-1943707c36ca"},{"name":"Delete a service","event":[{"listen":"test","script":{"id":"e19e07d0-c9d6-474a-87ac-9aa6404f34b9","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET service_id');","pm.environment.unset(\"service_id\");","","pm.environment.set(\"service_id\", pm.environment.get(\"first_service_id\"));","console.log('SET service_id: ' + pm.environment.get(\"service_id\"));","pm.environment.unset(\"first_service_id\");","console.log('UNSET first_service_id');","","pm.environment.unset(\"service_key\");","console.log('UNSET service_key');",""],"type":"text/javascript"}}],"id":"d8d9655b-fa2f-4e9b-945e-c1a937977677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/services/:service_id","urlObject":{"path":["v2","services",":service_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"2bba11cc-b8b4-4606-8787-d13838f630e8","type":"string","value":"{{service_id}}","key":"service_id"}]}},"response":[{"id":"56b066db-86d8-4e4d-be8f-ff8861b4bc05","name":"Delete a service","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/services/:service_id","host":["{{base_url}}"],"path":["v2","services",":service_id"],"variable":[{"key":"service_id","value":"{{service_id}}","type":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 09:09:34 GMT"},{"key":"X-Clockwork-Id","value":"X44dc4ec627ff2435be41e41387000784"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X44dc4ec627ff2435be41e41387000784"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-b6qP1ZmiFCL2wg8lXGNPPeAHGyAzUam7';style-src 'self' 'nonce-b6qP1ZmiFCL2wg8lXGNPPeAHGyAzUam7';font-src 'self' data:"},{"key":"Request-Id","value":"d8859119-bf71-4392-a2fe-9a5acf4a294f"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d8d9655b-fa2f-4e9b-945e-c1a937977677"}],"id":"eb6d5ab6-fab0-4531-b009-b7390b4c0256","description":"<p>Atomic support: ✔️</p>\n<p>Services can be anything that is a sellable item, that can be consumed. And should relate to (extracted) consumption data.</p>\n<p>Exivtiy documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#service\">https://docs.exivity.com/architecture%20concepts/glossary/#service</a></p>\n<h4 id=\"the-service-object\">The Service Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>key</td>\n<td><em>string</em></td>\n<td>🔏 immutible</td>\n<td>Required, unique, max 255 chars.</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>unit_label</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required. Label given to the units of consumption.</td>\n</tr>\n<tr>\n<td>service_type</td>\n<td><em>enum</em> (<code>service_name_in_header</code>, <code>service_name_in_data</code>)</td>\n<td>🔏 immutible</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>usage_col</td>\n<td><em>string</em></td>\n<td>🔏 immutible</td>\n<td>Required. Dset column from which the number of units consumed can be derived.</td>\n</tr>\n<tr>\n<td>consumption_col</td>\n<td><em>string</em></td>\n<td>🔏 immutible</td>\n<td>Required. Dset column containing consumption amount.</td>\n</tr>\n<tr>\n<td>instance_col</td>\n<td><em>string</em></td>\n<td>🔏 immutible</td>\n<td>Required. Dset column containing unique instance id's.</td>\n</tr>\n<tr>\n<td>interval</td>\n<td><em>enum</em> (<code>never</code>, <code>individually</code>, <code>second</code>, <code>minute</code>, <code>hour</code>, <code>day</code>, <code>week</code>, <code>month</code>, <code>year</code>)</td>\n<td>🔏 immutible</td>\n<td>Required. Currently, only <code>individually</code>, <code>day</code> and <code>month</code> are implemented.</td>\n</tr>\n<tr>\n<td>charge_type</td>\n<td><em>enum</em> (<code>none</code>, <code>manual</code>, <code>manual_per_unit</code>, <code>manual_per_interval</code>, <code>automatic</code>, <code>automatic_per_unit</code>, <code>automatic_per_interval</code>, <code>other</code>)</td>\n<td>🔏 immutible</td>\n<td>Required. Cannot be <code>none</code> if <code>cogs_type=none</code>.</td>\n</tr>\n<tr>\n<td>cogs_type</td>\n<td><em>enum</em> (<code>none</code>, <code>manual_per_unit</code>, <code>manual_per_interval</code>, <code>automatic_per_unit</code>, <code>automatic_per_interval</code>)</td>\n<td>🔏 immutible</td>\n<td>Required. Cannot be <code>none</code> if <code>charge_type=none</code>.</td>\n</tr>\n<tr>\n<td>proration_type</td>\n<td><em>enum</em> (<code>none</code>, <code>full</code>)</td>\n<td>🔏 immutible</td>\n<td>Required. If \"full\" with monthly, only charges for the days used.</td>\n</tr>\n<tr>\n<td>charge_model</td>\n<td><em>enum</em>? (<code>peak</code>, <code>average</code>, <code>specific_day</code>, <code>last_day</code>)</td>\n<td>📝 editable</td>\n<td>Only available if <code>interval=month</code>.</td>\n</tr>\n<tr>\n<td>charge_model_specific_day</td>\n<td><em>integer? (between 1 and 28)</em></td>\n<td>📝 editable</td>\n<td>Required if <code>charge_model=specific_day</code></td>\n</tr>\n<tr>\n<td>created_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td>Unix datetime the service was first created</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td>Unix datetime the service was last updated</td>\n</tr>\n<tr>\n<td>seen_at</td>\n<td><em>date</em></td>\n<td>👁 read-only</td>\n<td>ISO-8601 date the service was last seen in a dset (not yet supported)</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following resources can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>adjustments</td>\n<td>hasMany</td>\n<td>adjustment</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>budgetitems</td>\n<td>hasMany</td>\n<td>budgetitem</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>dataset</td>\n<td>hasOne</td>\n<td>dataset</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td>hasMany</td>\n<td>metadata</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>rates</td>\n<td>hasMany</td>\n<td>rate</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>servicecategory</td>\n<td>hasOne</td>\n<td>servicecategory</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"charge-and-cogs-type\">Charge and cogs type</h3>\n<p>The attributes <code>charge_type</code> and <code>cogs_type</code> define how the rate is used when calculating charge and cogs metrics using consumption of the service.</p>\n<ul>\n<li><p>The first part denotes whether the rate is dynamically derived from the usage data itself (<code>automatic</code>) or specified explicitly in rate entities (<code>manual</code>).</p>\n</li>\n<li><p>The second part denotes whether an amount per unit of consumption (<code>per_unit</code>) and/or per interval (<code>per_interval</code>) should be applied.</p>\n</li>\n</ul>\n<p>When the second part is omitted, both <code>per_unit</code> and <code>per_interval</code> are used. If no rate should be applied at all, <code>none</code> can be used. A value of <code>other</code> means a configuration is used not currently supported by the API.</p>\n","event":[{"listen":"prerequest","script":{"id":"6b62bc20-d582-46a9-9f84-01354cee330f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0d3c93c3-b1de-4133-a957-3bcea731b73a","type":"text/javascript","exec":[""]}}],"_postman_id":"eb6d5ab6-fab0-4531-b009-b7390b4c0256","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","name":"Services","type":"folder"}}},{"name":"/servicesubscriptions","item":[{"name":"Retrieve a list of service subscriptions","event":[{"listen":"test","script":{"id":"61bd0456-76ae-4351-bfb1-81ff4f71794d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"90c943c2-b28d-46fb-a4b9-7197e65f5a49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/servicesubscriptions?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","servicesubscriptions"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>account</code>, <code>service</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[],"_postman_id":"90c943c2-b28d-46fb-a4b9-7197e65f5a49"},{"name":"Add a new service subscription","event":[{"listen":"test","script":{"id":"9e08642b-20d2-40b7-a4b0-4e9d4c5dc665","exec":["pm.test(\"Status code is 201\", function() {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function() {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('servicesubscription');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.environment.set(\"servicesubscription_id\", response.data.id);","console.log('SET servicesubscription_id: ' + pm.environment.get(\"servicesubscription_id\"));","","pm.test(\"Response contains correct attributes\", function() {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.eql('test');","    pm.expect(response.data.attributes.quantity).to.eql(10.1);","    pm.expect(response.data.attributes.rate).to.eql(10.1);","    pm.expect(response.data.attributes.cogs).to.eql(10.1);","    pm.expect(response.data.attributes.type).to.eql('recurring');","    pm.expect(response.data.attributes.start_date).to.eql('2017-01-02');","    pm.expect(response.data.attributes.end_date).to.eql('2017-01-07');","    pm.expect(response.data.attributes.alt_interval).to.eql('day');","    pm.expect(response.data.attributes.instance).to.eql('exivity');","});","","pm.test(\"Response contains data.links\", function() {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"1248d387-c728-4249-a1ef-fd2e50e506a1","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReport)\r","    .then(api.requireAccount)\r","    .then(api.requireService)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"d973fb8f-1b0f-42b1-868f-7dd5541ce1a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"servicesubscription\",\r\n    \"attributes\": {\r\n      \"name\": \"test\",\r\n      \"quantity\": 10.10,\r\n      \"rate\": 10.10,\r\n      \"cogs\": 10.10,\r\n      \"type\": \"recurring\",\r\n      \"start_date\": \"2017-01-02\",\r\n      \"end_date\": \"2017-01-07\",\r\n      \"alt_interval\": \"day\",\r\n      \"charge_day\": null,\r\n      \"instance\": \"exivity\"\r\n    },\r\n    \"relationships\": {\r\n      \"account\": {\r\n        \"data\": {\r\n          \"type\": \"account\",\r\n          \"id\": \"{{account_id}}\"\r\n        }\r\n      },\r\n      \"service\": {\r\n        \"data\": {\r\n          \"type\": \"service\",\r\n          \"id\": \"{{service_id}}\"\r\n        }\r\n      }\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/servicesubscriptions","urlObject":{"path":["v2","servicesubscriptions"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d973fb8f-1b0f-42b1-868f-7dd5541ce1a2"},{"name":"Retrieve a service subscription","event":[{"listen":"test","script":{"id":"f4091325-6d38-4127-a3dc-8e4eb21f7c9e","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('servicesubscription');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"servicesubscription_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.eql('test');","    pm.expect(response.data.attributes.quantity).to.eql(10.10);","    pm.expect(response.data.attributes.rate).to.eql(10.10);","    pm.expect(response.data.attributes.cogs).to.eql(10.10);","    pm.expect(response.data.attributes.type).to.eql('recurring');","    pm.expect(response.data.attributes.start_date).to.eql('2017-01-02');","    pm.expect(response.data.attributes.end_date).to.eql('2017-01-07');","    pm.expect(response.data.attributes.alt_interval).to.eql('individually');","    pm.expect(response.data.attributes.instance).to.eql('exivity');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"59ec7fab-b0fb-41e8-a2a6-1ceb1d54d736","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/servicesubscriptions/:servicesubscription_id?include","urlObject":{"path":["v2","servicesubscriptions",":servicesubscription_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>account</code>, <code>service</code>.</p>\n","type":"text/plain"},"key":"include","value":null}],"variable":[{"type":"any","value":"{{servicesubscription_id}}","key":"servicesubscription_id"}]}},"response":[],"_postman_id":"59ec7fab-b0fb-41e8-a2a6-1ceb1d54d736"},{"name":"Update a service subscriptions","event":[{"listen":"test","script":{"id":"aa99ea4e-6f91-41c9-9567-0ca41abe64ff","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('servicesubscription');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"servicesubscription_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.eql('modified_test');","    pm.expect(response.data.attributes.quantity).to.eql(20.20);","    pm.expect(response.data.attributes.rate).to.eql(20.20);","    pm.expect(response.data.attributes.cogs).to.eql(20.20);","    pm.expect(response.data.attributes.type).to.eql('one_off');","    pm.expect(response.data.attributes.start_date).to.eql('2017-01-10');","    pm.expect(response.data.attributes.end_date).to.be.null;","    pm.expect(response.data.attributes.alt_interval).to.eql('month');","    pm.expect(response.data.attributes.instance).to.eql('exivity-updated');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"1532ee15-343b-4956-85da-13122bf39029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"servicesubscription\",\r\n    \"id\": \"{{service_subscription_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"modified_test\",\r\n      \"quantity\": 20.20,\r\n      \"rate\": 20.20,\r\n      \"cogs\": 20.20,\r\n      \"type\": \"one_off\",\r\n      \"start_date\": \"2017-01-10\",\r\n      \"alt_interval\": \"month\",\r\n      \"instance\": \"exivity-updated\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/servicesubscriptions/:servicesubscription_id","urlObject":{"path":["v2","servicesubscriptions",":servicesubscription_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{servicesubscription_id}}","key":"servicesubscription_id"}]}},"response":[],"_postman_id":"1532ee15-343b-4956-85da-13122bf39029"},{"name":"Prepare affected reports","event":[{"listen":"test","script":{"id":"650274d5-3620-48c4-9952-bd040b233cfc","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200)","});","","console.log(pm.response);"],"type":"text/javascript"}}],"id":"8d805195-44bb-4624-b55e-ca2bc6bbb27a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/servicesubscriptions/:servicesubscription_id/prepareAffectedReports","urlObject":{"path":["v2","servicesubscriptions",":servicesubscription_id","prepareAffectedReports"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{servicesubscription_id}}","key":"servicesubscription_id"}]}},"response":[],"_postman_id":"8d805195-44bb-4624-b55e-ca2bc6bbb27a"},{"name":"Delete a service subscriptions","event":[{"listen":"test","script":{"id":"b3ab6bc3-0ccc-4ccc-a34b-eaaebd583cfc","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET servicesubscription_id');","pm.environment.unset(\"servicesubscription_id\");"],"type":"text/javascript"}}],"id":"3d2a1b4a-9124-4361-b825-0af49c278bdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/servicesubscriptions/:servicesubscription_id","urlObject":{"path":["v2","servicesubscriptions",":servicesubscription_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{servicesubscription_id}}","key":"servicesubscription_id"}]}},"response":[],"_postman_id":"3d2a1b4a-9124-4361-b825-0af49c278bdf"}],"id":"2412d578-cb70-4cb1-b8ef-8c59b1eb0fd9","description":"<p>Atomic support: ✔️</p>\n<p>Subscriptions enable users to manage one-off and recurring transactions for charging non-metered services. <a href=\"https://docs.exivity.com/services/subscriptions\">Read more.</a></p>\n<h4 id=\"the-service-object\"><strong>The Service Object</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td><em>float</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>rate</td>\n<td><em>float</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>cogs</td>\n<td><em>float</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>subscription_type</td>\n<td><em>enum</em> (<code>recurring</code>, <code>one_off</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><em>date</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>charge_day</td>\n<td><em>datepartial?</em> (<code>D</code> / <code>--MM-DD</code>)</td>\n<td>📝 editable</td>\n<td>Required if <code>alt_interval=month</code> then value between 1 and 28. If <code>alt_interval=year</code> then valid date in format <code>--MM-DD</code>.</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><em>date?</em></td>\n<td>📝 editable</td>\n<td>Null or equal to <code>start_date</code> if <code>type=one_off</code>, null or after <code>start_date</code> if <code>type=recurring</code>.</td>\n</tr>\n<tr>\n<td>alt_interval</td>\n<td><em>enum?</em> (<code>day</code>, <code>month</code>, <code>year</code>)</td>\n<td>📝 editable</td>\n<td>If <code>null</code> and <code>type=recurring</code>, the interval on the service is used.</td>\n</tr>\n<tr>\n<td>instance</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following resources can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>account</td>\n<td>hasOne</td>\n<td>account</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>service</td>\n<td>hasOne</td>\n<td>service</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"957b1520-3a96-47a3-9d6e-a20beb6e82f2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9ccb5aab-6cec-4325-82e3-05901795c921","type":"text/javascript","exec":[""]}}],"_postman_id":"2412d578-cb70-4cb1-b8ef-8c59b1eb0fd9","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","name":"Services","type":"folder"}}},{"name":"/rates","item":[{"name":"Retrieve a list of rates","event":[{"listen":"test","script":{"id":"0c44d117-e22d-4884-83ca-d8850ffe1cfd","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","// Check response","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.response.to.be.json;","    pm.expect(response.data).to.be.an('array');","});","","// Check first rate","var rate = response.data[0];","pm.test(\"Rate type is correct\", function () {","    pm.expect(rate.type).to.eql('rate');","});","pm.test(\"Rate ID is set\", function () {","    pm.expect(rate.id).to.not.be.undefined;","});","pm.test(\"Rate attributes are correct\", function () {","    pm.expect(rate.attributes).to.be.an('object');","    pm.expect(rate.attributes).to.have.property(\"rate\");","    pm.expect(rate.attributes).to.have.property(\"rate_col\");","    pm.expect(rate.attributes).to.have.property(\"threshold\");","    pm.expect(rate.attributes).to.have.property(\"min_commit\");","    pm.expect(rate.attributes).to.have.property(\"effective_date\");","    pm.expect(rate.attributes).to.have.property(\"fixed\");","    pm.expect(rate.attributes).to.have.property(\"fixed_col\");","    pm.expect(rate.attributes).to.have.property(\"cogs_rate\");","    pm.expect(rate.attributes).to.have.property(\"cogs_rate_col\");","    pm.expect(rate.attributes).to.have.property(\"cogs_fixed\");","    pm.expect(rate.attributes).to.have.property(\"cogs_fixed_col\");","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"cdb7f094-adba-4e1f-a35c-f29e46990b7b","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"3263150c-1a80-4e5b-a2b5-cac7e8ee227c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/rates?page[limit]&page[offset]&sort&filter[attribute]&include","urlObject":{"path":["v2","rates"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>service</code>, <code>account</code>, <code>ratetiers</code>. </p>\n","type":"text/plain"},"key":"include","value":null}],"variable":[]}},"response":[],"_postman_id":"3263150c-1a80-4e5b-a2b5-cac7e8ee227c"},{"name":"Add a new rate","event":[{"listen":"test","script":{"id":"f02bea44-f7fe-4d3f-9df9-df801d036f94","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('rate');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.eql({","\t\t\"rate\": 1,","\t\t\"rate_col\": \"rate_col\",","\t\t\"fixed\": 2,","\t\t\"fixed_col\": \"fixed_col\",","\t\t\"cogs_rate\": 3,","\t\t\"cogs_rate_col\": \"cogs_rate_col\",","\t\t\"cogs_fixed\": 4,","\t\t\"cogs_fixed_col\": \"cogs_fixed_col\",","\t\t\"effective_date\": \"2017-08-27\",","\t\t\"threshold\": 0,","        \"min_commit\": 0,","        \"tier_aggregation_level\": 1","\t});","","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"rate_id\", response.data.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6257b033-532d-4c96-8750-cef29c4b3bb2","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.requireServiceCategory)","    .then(api.requireService)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"1427db8a-250e-4e6e-a013-d8e351c90c1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"rate\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"rate\": \"1.0\",\r\n\t\t\t\"rate_col\": \"rate_col\",\r\n\t\t\t\"cogs_rate\": \"3.0\",\r\n\t\t\t\"cogs_rate_col\": \"cogs_rate_col\",\r\n\t\t\t\"effective_date\": \"2017-08-27\",\r\n            \"tier_aggregation_level\": \"1\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"service\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"service\",\r\n\t\t\t\t\t\"id\": \"{{service_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/rates","description":"<p>Account specific rates can be created through this endpoint by specifying the <code>account</code> relationship in the request body, e.g.:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"relationships\": {\n    \"service\": { ... },\n    \"account\": {\n        \"data\": {\n            \"type\": \"account\",\n            \"id\": \"1\"\n        }\n    }\n}\n</code></pre>","urlObject":{"path":["v2","rates"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"a1951969-4bfa-4869-b787-8be49a944b3e","name":"Add a new rate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"rate\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"rate\": \"1.0\",\r\n\t\t\t\"rate_col\": \"rate_col\",\r\n\t\t\t\"cogs_rate\": \"3.0\",\r\n\t\t\t\"cogs_rate_col\": \"cogs_rate_col\",\r\n\t\t\t\"effective_date\": \"2017-08-27\",\r\n            \"min_commit\": \"10\",\r\n            \"tier_aggregation_level\": \"1\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"service\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"service\",\r\n\t\t\t\t\t\"id\": \"{{service_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/rates"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 09:31:01 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/Rate/Rates"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-mfEPv0DJWTRpd7iQRdtT5pi2Gm2zkcG8';style-src 'self' 'nonce-mfEPv0DJWTRpd7iQRdtT5pi2Gm2zkcG8';font-src 'self' data:"},{"key":"Request-Id","value":"4a7c6a11-afe4-4d27-ad2e-233142483642"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"rate\",\n        \"id\": \"143\",\n        \"attributes\": {\n            \"rate\": 1,\n            \"rate_col\": \"rate_col\",\n            \"threshold\": null,\n            \"min_commit\": 10,\n            \"effective_date\": \"2017-08-27\",\n            \"fixed\": null,\n            \"fixed_col\": null,\n            \"cogs_rate\": 3,\n            \"cogs_rate_col\": \"cogs_rate_col\",\n            \"cogs_fixed\": null,\n            \"cogs_fixed_col\": null,\n            \"tier_aggregation_level\": 1\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/rates/143\"\n        },\n        \"relationships\": {\n            \"service\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/rates/143/relationships/service\",\n                    \"related\": \"https://dev.exivity.net/v2/rates/143/service\"\n                }\n            },\n            \"account\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/rates/143/relationships/account\",\n                    \"related\": \"https://dev.exivity.net/v2/rates/143/account\"\n                }\n            },\n            \"ratetiers\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/rates/143/relationships/ratetiers\",\n                    \"related\": \"https://dev.exivity.net/v2/rates/143/ratetiers\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1427db8a-250e-4e6e-a013-d8e351c90c1d"},{"name":"Retrieve a rate","event":[{"listen":"test","script":{"id":"ff1b6731-1667-4a2e-af58-7cd4e38b38c5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('rate');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.eql({","        \"rate\": 1,","        \"rate_col\": \"rate_col\",","        \"fixed\": 2,","        \"fixed_col\": \"fixed_col\",","        \"cogs_rate\": 3,","        \"cogs_rate_col\": \"cogs_rate_col\",","        \"cogs_fixed\": 4,","        \"cogs_fixed_col\": \"cogs_fixed_col\",","        \"effective_date\": \"2017-08-27\",","        \"threshold\": 0,","        \"min_commit\": 0,","        \"tier_aggregation_level\": 1","  });","","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"f63c409f-f029-43d9-ab5d-33edd8fd85d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/rates/:rate_id?include=","urlObject":{"path":["v2","rates",":rate_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>service</code>, <code>account</code>, <code>ratetiers</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"type":"any","value":"{{rate_id}}","key":"rate_id"}]}},"response":[{"id":"59720071-9a8c-4e59-92d3-6354db2b8626","name":"Retrieve a rate","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/rates/:rate_id?include=","host":["{{base_url}}"],"path":["v2","rates",":rate_id"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `service`, `account`, `ratetiers`"}],"variable":[{"key":"rate_id","value":"{{rate_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 09:31:18 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-2M2OrdEh6JLFDedJ18e0Cgw3zer45lcD';style-src 'self' 'nonce-2M2OrdEh6JLFDedJ18e0Cgw3zer45lcD';font-src 'self' data:"},{"key":"Request-Id","value":"efa4c4d0-e65a-4cee-95a9-3eca2cb0cf01"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"rate\",\n        \"id\": \"143\",\n        \"attributes\": {\n            \"rate\": 1,\n            \"rate_col\": \"rate_col\",\n            \"threshold\": null,\n            \"min_commit\": 10,\n            \"effective_date\": \"2017-08-27\",\n            \"fixed\": null,\n            \"fixed_col\": null,\n            \"cogs_rate\": 3,\n            \"cogs_rate_col\": \"cogs_rate_col\",\n            \"cogs_fixed\": null,\n            \"cogs_fixed_col\": null,\n            \"tier_aggregation_level\": 1\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/rates/143\"\n        },\n        \"relationships\": {\n            \"service\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/rates/143/relationships/service\",\n                    \"related\": \"https://dev.exivity.net/v2/rates/143/service\"\n                }\n            },\n            \"account\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/rates/143/relationships/account\",\n                    \"related\": \"https://dev.exivity.net/v2/rates/143/account\"\n                }\n            },\n            \"ratetiers\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/rates/143/relationships/ratetiers\",\n                    \"related\": \"https://dev.exivity.net/v2/rates/143/ratetiers\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"f63c409f-f029-43d9-ab5d-33edd8fd85d8"},{"name":"Prepare affected reports","event":[{"listen":"test","script":{"id":"c756ed5b-6b0a-4246-adf8-418eca071d56","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","console.log(pm.response);"],"type":"text/javascript"}}],"id":"6b378f61-dfa8-42d0-82ff-0df1ff46178d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/rates/:rate_id/prepareAffectedReports","urlObject":{"path":["v2","rates",":rate_id","prepareAffectedReports"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{rate_id}}","key":"rate_id"}]}},"response":[],"_postman_id":"6b378f61-dfa8-42d0-82ff-0df1ff46178d"},{"name":"Update a rate","event":[{"listen":"test","script":{"id":"b8cc8dc0-9975-455a-9e64-cddb017804eb","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('rate');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"rate\": 10,","        \"rate_col\": \"rate_col2\",","        \"fixed\": 20,","        \"fixed_col\": \"fixed_col2\",","        \"cogs_rate\": 30,","        \"cogs_rate_col\": \"cogs_rate_col2\",","        \"cogs_fixed\": 40,","        \"cogs_fixed_col\": \"cogs_fixed_col2\",","        \"effective_date\": \"2017-08-27\",","        \"threshold\": 10,","        \"min_commit\": 50,","    });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"5efa8451-ef8a-425e-ae12-abdbbcfca1da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"rate\",\r\n    \"id\": \"{{rate_id}}\",\r\n    \"attributes\": {\r\n      \"min_commit\": \"50\",\r\n      \"rate\": \"10.0\",\r\n      \"rate_col\": \"rate_col2\",\r\n      \"cogs_rate\": \"30.0\",\r\n      \"cogs_rate_col\": \"cogs_rate_col2\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/rates/:rate_id","urlObject":{"path":["v2","rates",":rate_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{rate_id}}","key":"rate_id"}]}},"response":[],"_postman_id":"5efa8451-ef8a-425e-ae12-abdbbcfca1da"},{"name":"Delete a rate","event":[{"listen":"test","script":{"id":"7f9dfe9f-03b3-46f5-bd01-040ae6a5cc62","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET rate_id');","pm.environment.unset(\"rate_id\");"],"type":"text/javascript"}}],"id":"fc1f8a68-fff1-4c26-8571-5eeed27b81bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/rates/:rate_id","description":"<p>A rate that has the earliest <code>effective_date</code> from the perspective of the associated <code>service</code> cannot be deleted.</p>\n","urlObject":{"path":["v2","rates",":rate_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{rate_id}}","key":"rate_id"}]}},"response":[],"_postman_id":"fc1f8a68-fff1-4c26-8571-5eeed27b81bb"}],"id":"2a078ade-bde3-494a-9674-c37ed0ce980a","description":"<p>Atomic support: ✔️</p>\n<p>Rates allows you to configure charge/cogs rates either manually or automatically.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/services/rates\">https://docs.exivity.com/services/rates</a></p>\n<h4 id=\"the-rate-object\">The Rate Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>effective_date</td>\n<td>_date</td>\n<td>year-month_</td>\n<td>immutable</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>_date?</td>\n<td>year-month?_</td>\n<td>immutable</td>\n</tr>\n<tr>\n<td>rate</td>\n<td><em>double?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>charge_type=manual_per_unit</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>rate_col</td>\n<td><em>string?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>charge_type=automatic_per_unit</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>fixed</td>\n<td><em>double?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>charge_type=manual_per_interval</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>fixed_col</td>\n<td><em>string?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>charge_type=automatic_per_interval</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>cogs_rate</td>\n<td><em>double?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>cogs_type=manual_per_unit</code></td>\n</tr>\n<tr>\n<td>cogs_rate_col</td>\n<td><em>string?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>cogs_type=automatic_per_unit</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>cogs_fixed</td>\n<td><em>double?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>cogs_type=manual_per_interval</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>cogs_fixed_col</td>\n<td><em>string?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>cogs_type=automatic_per_interval</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>min_commit</td>\n<td><em>double?</em></td>\n<td>📝 editable</td>\n<td>Cannot be set if service attribute <code>charge_type</code> is one of <code>manual_tiered_standard</code>, <code>manual_tiered_inherited</code>. Defaults to <code>null</code>.</td>\n</tr>\n<tr>\n<td>tier_aggregation_level</td>\n<td><em>integer?</em></td>\n<td>📝 editable</td>\n<td>Defaults to <code>null</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>service</td>\n<td>hasOne</td>\n<td>service</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>account</td>\n<td>hasOne</td>\n<td>account</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>ratetiers</td>\n<td>hasMany</td>\n<td>ratetier</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"7de09f58-1052-461e-ba64-01cfaeff652b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0163d2f2-727f-4bc6-bac1-7feee6ba7987","type":"text/javascript","exec":[""]}}],"_postman_id":"2a078ade-bde3-494a-9674-c37ed0ce980a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","name":"Services","type":"folder"}}},{"name":"/ratetiers","item":[{"name":"Retrieve a list of rate tiers","event":[{"listen":"test","script":{"id":"7db21121-838e-49b5-be47-b6a936f0f5ab","exec":["/*pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","// Check response","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.response.to.be.json;","    pm.expect(response.data).to.be.an('array');","});","","// Check first rate tier","var ratetier = response.data[0];","pm.test(\"Ratetier type is correct\", function () {","    pm.expect(ratetier.type).to.eql('ratetier');","});","pm.test(\"Ratetier ID is set\", function () {","    pm.expect(ratetier.id).to.not.be.undefined;","});","pm.test(\"Ratetier attributes are correct\", function () {","    pm.expect(ratetier.attributes).to.be.an('object');","    pm.expect(ratetier.attributes).to.have.property(\"threshold\");","    pm.expect(ratetier.attributes).to.have.property(\"rate\");","    pm.expect(ratetier.attributes).to.have.property(\"cogs\");","});*/"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c76f2b87-4475-4ea9-ae19-81810c7c1c2d","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"82bb2528-34da-4e55-8917-00ae447c8a30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/ratetiers?page[limit]&page[offset]&sort&filter[attribute]&include","urlObject":{"path":["v2","ratetiers"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>rate</code>.</p>\n","type":"text/plain"},"key":"include","value":null}],"variable":[]}},"response":[],"_postman_id":"82bb2528-34da-4e55-8917-00ae447c8a30"},{"name":"Add a new rate tier","event":[{"listen":"test","script":{"id":"93924341-c5fc-4d11-84e7-f9f17d0ccbc6","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('ratetier');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.eql({","        \"threshold\": 0,","        \"rate\": 4,","        \"cogs\": null","    });","","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"ratetier_id\", response.data.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e0da50b9-6d27-46e1-bf6a-9cbfa31b3824","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.requireServiceCategory)","    .then(api.requireService)","    .then(api.requireRate)","    .then(api.ready)","    .catch(function (err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"076a4b24-44d6-4e93-bf27-c65c53297a1a","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"ratetier\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"threshold\": \"0\",\r\n\t\t\t\"rate\": \"4.0\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"rate\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"rate\",\r\n\t\t\t\t\t\"id\": \"{{rate_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/ratetiers","urlObject":{"path":["v2","ratetiers"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"13eb775f-516a-4144-8714-b457a862a430","name":"Add a new rate tier","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"ratetier\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"threshold\": \"0\",\r\n\t\t\t\"rate\": \"4.0\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"rate\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"rate\",\r\n\t\t\t\t\t\"id\": \"{{rate_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/ratetiers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 10:08:40 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/RateTier/RateTiers"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-CVOcQphYWzLzIYD55K1EEbaDbNSY2OM7';style-src 'self' 'nonce-CVOcQphYWzLzIYD55K1EEbaDbNSY2OM7';font-src 'self' data:"},{"key":"Request-Id","value":"3e961b4f-0c68-4747-b5b5-461815d21baa"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"ratetier\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"threshold\": 0,\n            \"rate\": 4,\n            \"cogs\": null\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/ratetiers/1\"\n        },\n        \"relationships\": {\n            \"rate\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/ratetiers/1/relationships/rate\",\n                    \"related\": \"https://dev.exivity.net/v2/ratetiers/1/rate\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"076a4b24-44d6-4e93-bf27-c65c53297a1a"},{"name":"Retrieve a rate tier","event":[{"listen":"test","script":{"id":"170e7b81-c230-4a7f-8de8-95e4d9ff6fa0","exec":["/*pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('ratetier');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.eql({","        \"threshold\": 0,","        \"rate\": 4,","        \"cogs\": null","    });","","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});*/"],"type":"text/javascript"}}],"id":"1079236a-1e18-4dcb-ac0a-a77baf763f14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/ratetiers/:ratetier_id?include=","urlObject":{"path":["v2","ratetiers",":ratetier_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>rate</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"type":"any","value":"{{ratetier_id}}","key":"ratetier_id"}]}},"response":[{"id":"9a9e583c-71cd-4c9c-b4f5-6cc1c8a70ecf","name":"Retrieve a rate tier","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/ratetiers/:ratetier_id?include=","host":["{{base_url}}"],"path":["v2","ratetiers",":ratetier_id"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `rate`."}],"variable":[{"key":"ratetier_id","value":"{{ratetier_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 10:13:19 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-sZP4yLRxu0SkRTukCyV12AdZF9jyN475';style-src 'self' 'nonce-sZP4yLRxu0SkRTukCyV12AdZF9jyN475';font-src 'self' data:"},{"key":"Request-Id","value":"2bd1949b-f3fd-478b-bb47-3d65fac64e11"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"ratetier\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"threshold\": 0,\n            \"rate\": 4,\n            \"cogs\": null\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/ratetiers/2\"\n        },\n        \"relationships\": {\n            \"rate\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/ratetiers/2/relationships/rate\",\n                    \"related\": \"https://dev.exivity.net/v2/ratetiers/2/rate\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1079236a-1e18-4dcb-ac0a-a77baf763f14"},{"name":"Update a rate tier","event":[{"listen":"test","script":{"id":"f9033189-150d-4cb1-b966-e2df59d9a56a","exec":["/*pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('ratetier');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"cogs\": 10,","    });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});*/"],"type":"text/javascript"}}],"id":"f8a946c4-6fe2-4800-a1dd-daf5ba31ca31","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"ratetier\",\r\n    \"id\": \"{{ratetier_id}}\",\r\n    \"attributes\": {\r\n      \"cogs\": 10\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/ratetiers/:ratetier_id","urlObject":{"path":["v2","ratetiers",":ratetier_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{ratetier_id}}","key":"ratetier_id"}]}},"response":[],"_postman_id":"f8a946c4-6fe2-4800-a1dd-daf5ba31ca31"},{"name":"Delete a rate tier","event":[{"listen":"test","script":{"id":"2dfc7404-7900-48cb-a1c2-0d0312cbfc79","exec":["/*pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET ratetier_id');","pm.environment.unset(\"ratetier_id\");*/"],"type":"text/javascript"}}],"id":"e5d90865-fd14-4e33-b026-06f14c4f40c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/ratetiers/:ratetier_id","urlObject":{"path":["v2","ratetiers",":ratetier_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{ratetier_id}}","key":"ratetier_id"}]}},"response":[],"_postman_id":"e5d90865-fd14-4e33-b026-06f14c4f40c1"}],"id":"6b47a562-76eb-4b95-8c7f-60d6e6f7c5b4","description":"<p>Atomic support: ✔️</p>\n<p>Rate tiers allows you to configure tiered pricing.<br />Exivity documentation: <a href=\"https://docs.exivity.com/services/rates\">https://docs.exivity.com/services/rates</a></p>\n<h4 id=\"the-rate-tier-object\">The Rate Tier Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>threshold</td>\n<td><em>double</em></td>\n<td>📝 editable unless it is <code>0</code>.</td>\n<td>Required, unique, gte:0 and first <code>ratetier</code> associated with a particular <code>rate</code> must have <code>threshold=0</code>.</td>\n</tr>\n<tr>\n<td>rate</td>\n<td><em>double?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>charge_type</code> is one of <code>manual_tiered_standard</code>, <code>manual_tiered_inherited</code></td>\n</tr>\n<tr>\n<td>cogs</td>\n<td><em>double?</em></td>\n<td>📝 editable</td>\n<td>Required if <code>service</code> attribute <code>cogs_type</code> is one of <code>manual_tiered_standard</code>, <code>manual_tiered_inherited</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>tyoe</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>rate</td>\n<td>hasOne</td>\n<td>rate</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"53dd7c15-cb40-4964-a120-6fad299c55ac","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ce86bef1-6dd9-4fce-a9ed-02912cda3c17","type":"text/javascript","exec":[""]}}],"_postman_id":"6b47a562-76eb-4b95-8c7f-60d6e6f7c5b4","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","name":"Services","type":"folder"}}},{"name":"/adjustments","item":[{"name":"Retrieve a list of adjustments","event":[{"listen":"test","script":{"id":"bdb8eb43-49bb-4f55-9d0f-de32343122a5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"f9596d71-856f-495d-a7b0-6f70c74b8b2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/adjustments?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","adjustments"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>account</code>, <code>services</code>, <code>servicecategories</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"58a0a623-8874-4aac-bcfc-ac086c7d96c2","name":"Retrieve a list of adjustments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/adjustments?page[limit]&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","adjustments"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `account`, `services`, `servicecategories`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 23 May 2022 08:00:41 GMT"},{"key":"Date","value":"Mon, 23 May 2022 08:00:41 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X82c3d74f387f5a036f1d245ce06c7343"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Clh6ZGgZ1t6el3oTeiuwTnSJFEdSC5X0';style-src 'self' 'nonce-Clh6ZGgZ1t6el3oTeiuwTnSJFEdSC5X0';font-src 'self' data:"},{"key":"Request-Id","value":"f999e1ba-7081-4e3b-92e0-f036c95497b6"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"adjustment\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"test\",\n                \"amount\": -10,\n                \"sort\": 0,\n                \"type\": \"relative\",\n                \"target\": \"charge\",\n                \"first_interval\": \"2017-01\",\n                \"last_interval\": \"2017-12\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/adjustments/1\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/account\",\n                        \"related\": \"http://localhost:8012/v2/adjustments/1/account\"\n                    }\n                },\n                \"services\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/services\",\n                        \"related\": \"http://localhost:8012/v2/adjustments/1/services\"\n                    }\n                },\n                \"servicecategories\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/servicecategories\",\n                        \"related\": \"http://localhost:8012/v2/adjustments/1/servicecategories\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"http://localhost:8012/v2/adjustments?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"http://localhost:8012/v2/adjustments?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"http://localhost:8012/v2/adjustments?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"f9596d71-856f-495d-a7b0-6f70c74b8b2e"},{"name":"Add a new adjustment","event":[{"listen":"test","script":{"id":"20f53f65-a6f2-400d-b1e3-119bd529ba30","exec":["pm.test(\"Status code is 201\", function() {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function() {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('adjustment');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.environment.set(\"adjustment_id\", response.data.id);","console.log('SET adjustment_id: ' + pm.environment.get(\"adjustment_id\"));","","pm.test(\"Response contains correct attributes\", function() {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.eql('test');","    pm.expect(response.data.attributes.amount).to.eql(-10);","    pm.expect(response.data.attributes.type).to.eql('relative');","    pm.expect(response.data.attributes.target).to.eql('charge');","    pm.expect(response.data.attributes.first_interval).to.eql('2017-01');","    pm.expect(response.data.attributes.last_interval).to.eql('2017-12');","});","","pm.test(\"Response contains data.links\", function() {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"a622e359-4aa3-454c-b308-3511079b3070","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.requireReport)","    .then(api.requireAccount)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"27213aa2-f283-4210-8e29-fd2f2d7b9221","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"adjustment\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"test\",\r\n\t\t\t\"amount\": \"-10\",\r\n\t\t\t\"type\": \"relative\",\r\n\t\t\t\"target\": \"charge\",\r\n\t\t\t\"first_interval\": \"2017-01\",\r\n\t\t\t\"last_interval\": \"2017-12\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t  \"type\": \"account\",\r\n\t\t\t\t  \"id\": \"{{account_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/adjustments","urlObject":{"path":["v2","adjustments"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"268916bd-01a5-42f9-9738-a936d147e806","name":"Add a new adjustment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"adjustment\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"test\",\r\n\t\t\t\"amount\": \"-10\",\r\n\t\t\t\"type\": \"relative\",\r\n\t\t\t\"target\": \"charge\",\r\n\t\t\t\"first_interval\": \"2017-01\",\r\n\t\t\t\"last_interval\": \"2017-12\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"account\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t  \"type\": \"account\",\r\n\t\t\t\t  \"id\": \"{{account_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/adjustments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 23 May 2022 08:00:17 GMT"},{"key":"Date","value":"Mon, 23 May 2022 08:00:17 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/Adjustment/Adjustments"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X45e95f944acc9279f8d6a3a7669c1ca2"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-pWrfUgb7Qn2Ug8xQTK9riCiSiNKvgdMm';style-src 'self' 'nonce-pWrfUgb7Qn2Ug8xQTK9riCiSiNKvgdMm';font-src 'self' data:"},{"key":"Request-Id","value":"e2c1a73e-aa64-48f6-9953-867a351a5b3b"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"adjustment\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"test\",\n            \"amount\": -10,\n            \"sort\": 0,\n            \"type\": \"relative\",\n            \"target\": \"charge\",\n            \"first_interval\": \"2017-01\",\n            \"last_interval\": \"2017-12\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/adjustments/1\"\n        },\n        \"relationships\": {\n            \"account\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/account\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/account\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/services\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/services\"\n                }\n            },\n            \"servicecategories\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/servicecategories\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/servicecategories\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"27213aa2-f283-4210-8e29-fd2f2d7b9221"},{"name":"Retrieve an adjustment","event":[{"listen":"test","script":{"id":"e824860e-6b9c-4810-b4b4-6a6533500aee","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('adjustment');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"adjustment_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.eql('test');","    pm.expect(response.data.attributes.amount).to.eql(-10);","    pm.expect(response.data.attributes.type).to.eql('relative');","    pm.expect(response.data.attributes.target).to.eql('charge');","    pm.expect(response.data.attributes.first_interval).to.eql('2017-01');","    pm.expect(response.data.attributes.last_interval).to.eql('2017-12');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"9e4aca3c-9991-42ee-97fc-c5991fe044c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/adjustments/:adjustment_id?include","urlObject":{"path":["v2","adjustments",":adjustment_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources</p>\n","type":"text/plain"},"key":"include","value":null}],"variable":[{"id":"d5eef3ba-0e40-4873-9043-188dea99b6a2","type":"string","value":"{{adjustment_id}}","key":"adjustment_id"}]}},"response":[{"id":"244e82d6-f3e1-490e-90ce-98117f6d7e8a","name":"Retrieve an adjustment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/adjustments/:adjustment_id?include","host":["{{base_url}}"],"path":["v2","adjustments",":adjustment_id"],"query":[{"key":"include","value":null,"description":"Include additional related resources"}],"variable":[{"id":"d5eef3ba-0e40-4873-9043-188dea99b6a2","key":"adjustment_id","value":"{{adjustment_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 23 May 2022 08:01:56 GMT"},{"key":"Date","value":"Mon, 23 May 2022 08:01:56 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xe1ea472790e5e4c05235a66b75182aea"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-szJEH7fIAFw6FKxeIh3KKlLr9V8IWJMs';style-src 'self' 'nonce-szJEH7fIAFw6FKxeIh3KKlLr9V8IWJMs';font-src 'self' data:"},{"key":"Request-Id","value":"daa0ab4a-b29c-4929-b667-32d15fdcf9fc"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"adjustment\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"test\",\n            \"amount\": -10,\n            \"sort\": 0,\n            \"type\": \"relative\",\n            \"target\": \"charge\",\n            \"first_interval\": \"2017-01\",\n            \"last_interval\": \"2017-12\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/adjustments/1\"\n        },\n        \"relationships\": {\n            \"account\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/account\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/account\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/services\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/services\"\n                }\n            },\n            \"servicecategories\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/servicecategories\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/servicecategories\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"9e4aca3c-9991-42ee-97fc-c5991fe044c0"},{"name":"Update an adjustment","event":[{"listen":"test","script":{"id":"bd7013e5-ea19-4262-ba53-7a95d03a0c53","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('adjustment');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"adjustment_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.eql('modified_test');","    pm.expect(response.data.attributes.amount).to.eql(-20);","    pm.expect(response.data.attributes.type).to.eql('absolute');","    pm.expect(response.data.attributes.target).to.eql('quantity');","    pm.expect(response.data.attributes.first_interval).to.eql('2018-01');","    pm.expect(response.data.attributes.last_interval).to.eql(null);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"7b794967-6be2-4e28-afd8-1535fefb588c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"adjustment\",\r\n    \"id\": \"{{adjustment_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"modified_test\",\r\n      \"amount\": \"-20\",\r\n      \"type\": \"absolute\",\r\n      \"target\": \"quantity\",\r\n      \"first_interval\": \"2018-01\",\r\n      \"last_interval\": \"\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/adjustments/:adjustment_id","urlObject":{"path":["v2","adjustments",":adjustment_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"12392cc9-1206-4e56-8008-838a68479cfe","type":"string","value":"{{adjustment_id}}","key":"adjustment_id"}]}},"response":[{"id":"b1ac1b6f-0f8a-4c23-b203-b7b1235bbb9a","name":"Update an adjustment","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"adjustment\",\r\n    \"id\": \"{{adjustment_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"modified_test\",\r\n      \"amount\": \"-20\",\r\n      \"type\": \"absolute\",\r\n      \"target\": \"quantity\",\r\n      \"first_interval\": \"2018-01\",\r\n      \"last_interval\": \"\"\r\n    }\r\n  }\r\n}"},"url":{"raw":"{{base_url}}/v2/adjustments/:adjustment_id","host":["{{base_url}}"],"path":["v2","adjustments",":adjustment_id"],"variable":[{"id":"12392cc9-1206-4e56-8008-838a68479cfe","key":"adjustment_id","value":"{{adjustment_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 23 May 2022 08:02:21 GMT"},{"key":"Date","value":"Mon, 23 May 2022 08:02:21 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X7e0c90315c0ac61975de2c7c2127ad28"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Z3mRND9S7omXxWHNvyM4NITlKCy8j4Qs';style-src 'self' 'nonce-Z3mRND9S7omXxWHNvyM4NITlKCy8j4Qs';font-src 'self' data:"},{"key":"Request-Id","value":"8c2415f5-c109-4965-b42b-8526f05809b3"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"adjustment\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"modified_test\",\n            \"amount\": -20,\n            \"sort\": 0,\n            \"type\": \"absolute\",\n            \"target\": \"quantity\",\n            \"first_interval\": \"2018-01\",\n            \"last_interval\": null\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/adjustments/1\"\n        },\n        \"relationships\": {\n            \"account\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/account\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/account\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/services\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/services\"\n                }\n            },\n            \"servicecategories\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/adjustments/1/relationships/servicecategories\",\n                    \"related\": \"http://localhost:8012/v2/adjustments/1/servicecategories\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"7b794967-6be2-4e28-afd8-1535fefb588c"},{"name":"Prepare affected reports","event":[{"listen":"test","script":{"id":"09e0f439-f8e6-434a-8baf-39d746bb54df","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","console.log(pm.response);"],"type":"text/javascript"}}],"id":"7556466f-11b2-4878-b493-30d544feb0a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/adjustments/:adjustment_id/prepareAffectedReports","description":"<p>Atomic support: ❌</p>\n<p>The preparation of a report populates the accounts table and also optimizes the performance when running your reports. When adjustments change, it is a good idea to run this command to update any effected data.</p>\n","urlObject":{"path":["v2","adjustments",":adjustment_id","prepareAffectedReports"],"host":["{{base_url}}"],"query":[],"variable":[{"description":{"content":"<p>integer</p>\n","type":"text/plain"},"type":"string","value":"{{adjustment_id}}","key":"adjustment_id"}]}},"response":[],"_postman_id":"7556466f-11b2-4878-b493-30d544feb0a5"},{"name":"Delete an adjustment","event":[{"listen":"test","script":{"id":"6c295712-93cb-4756-9ed8-d87049b13bd1","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET adjustment_id');","pm.environment.unset(\"adjustment_id\");"],"type":"text/javascript"}}],"id":"e920db17-53eb-4348-8007-c0e0b9eadccf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/adjustments/:adjustment_id","urlObject":{"path":["v2","adjustments",":adjustment_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"7b8902f4-e769-4f5c-afda-ee87b7704bb9","type":"string","value":"{{adjustment_id}}","key":"adjustment_id"}]}},"response":[],"_postman_id":"e920db17-53eb-4348-8007-c0e0b9eadccf"}],"id":"6502a1f9-51c5-4abe-8b2a-136b12981d5b","description":"<p>Atomic support: ✔️</p>\n<p>Adjustments allow a user to create account-specific rate adjustment policies.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#adjustment\">https://docs.exivity.com/architecture%20concepts/glossary/#adjustment</a></p>\n<h4 id=\"the-adjustment-object\">The Adjustment Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>double</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>sort</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Required, min: 0</td>\n</tr>\n<tr>\n<td>adjustment_type</td>\n<td><em>enum</em> (<code>relative</code>, <code>absolute</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>target</td>\n<td><em>enum</em> (<code>charge</code>,<code>quantity</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>first_interval</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required, date format: Y-m</td>\n</tr>\n<tr>\n<td>last_interval</td>\n<td><em>string?</em></td>\n<td>📝 editable</td>\n<td>Date format: Y-m</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following resources can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>has one</td>\n<td>account</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>has many</td>\n<td>services</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>has many</td>\n<td>servicecategories</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"fd5daae5-1e39-4671-88ef-570dc823e48d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7c6b31c0-b30d-4a7c-8cf9-b02cd72e26e4","type":"text/javascript","exec":[""]}}],"_postman_id":"6502a1f9-51c5-4abe-8b2a-136b12981d5b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","name":"Services","type":"folder"}}}],"id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"ad7bf846-93f1-4315-b049-143c5ff035b9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a3d204ec-5ea8-4eb2-b539-4788fb0f79f7","type":"text/javascript","exec":[""]}}],"_postman_id":"a63d8d5c-7ba8-4b44-8400-b2cc8123456e","description":""},{"name":"Accounts","item":[{"name":"/accounts","item":[{"name":"Retrieve a list of accounts","event":[{"listen":"test","script":{"id":"ad745176-74eb-438f-b682-33d32c39a648","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});","","pm.environment.set(\"account_id\", response.data[0].id);","console.log('SET account_id: ' + pm.environment.get(\"account_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"dd318e88-dc53-4a01-a5ed-5676d7953fd1","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"26443a67-def1-4270-80e8-1c00f8b88af2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/accounts?page[limit]&page[offset]&sort&filter[name]=&include=","urlObject":{"path":["v2","accounts"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[name]","value":""},{"description":{"content":"<p>Include additional related resources. Possible values: <code>report</code>, <code>parent</code>, <code>children</code>, <code>rates</code>, <code>adjustments</code>, <code>users</code>, <code>metadata</code>, <code>budgetitems</code>, <code>servicesubscriptions</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"09409c56-2d9d-40c1-9d58-66dbf925b931","name":"Retrieve a list of accounts","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v1/accounts?page[limit]&page[offset]&sort&filter[name]=&include=","host":["{{base_url}}"],"path":["v1","accounts"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[name]","value":"","description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `report`, `parent`, `children`, `rates`, `adjustments`, `users`, `metadata`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.17.4"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"PHP/7.3.10"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 18 Dec 2019 15:00:59 GMT"},{"key":"Access-Control-Allow-Origin","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"account\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"Mucho Cloud Corp\",\n                \"level\": 1,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"\",\n                \"lvl3_key\": \"\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/1\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"name\": \"Wholesale IT Services\",\n                \"level\": 1,\n                \"lvl1_key\": \"Wholesale IT Services\",\n                \"lvl2_key\": \"\",\n                \"lvl3_key\": \"\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/2\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"name\": \"Fresh Bakery Inc\",\n                \"level\": 2,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"Fresh Bakery Inc\",\n                \"lvl3_key\": \"\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/3\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"name\": \"Rusty Bicycles Ltd\",\n                \"level\": 2,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"Rusty Bicycles Ltd\",\n                \"lvl3_key\": \"\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/4\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"name\": \"Deegan Daggers\",\n                \"level\": 2,\n                \"lvl1_key\": \"Wholesale IT Services\",\n                \"lvl2_key\": \"Deegan Daggers\",\n                \"lvl3_key\": \"\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/5\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"name\": \"Boezem Bezems\",\n                \"level\": 2,\n                \"lvl1_key\": \"Wholesale IT Services\",\n                \"lvl2_key\": \"Boezem Bezems\",\n                \"lvl3_key\": \"\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/6\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"name\": \"Europe\",\n                \"level\": 3,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"Fresh Bakery Inc\",\n                \"lvl3_key\": \"Europe\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/7\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"name\": \"Australia\",\n                \"level\": 3,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"Fresh Bakery Inc\",\n                \"lvl3_key\": \"Australia\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/8\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"name\": \"United Kingdom\",\n                \"level\": 3,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"Rusty Bicycles Ltd\",\n                \"lvl3_key\": \"United Kingdom\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/9\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"name\": \"Benelux\",\n                \"level\": 3,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"Rusty Bicycles Ltd\",\n                \"lvl3_key\": \"Benelux\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/10\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"name\": \"Japan\",\n                \"level\": 3,\n                \"lvl1_key\": \"Wholesale IT Services\",\n                \"lvl2_key\": \"Deegan Daggers\",\n                \"lvl3_key\": \"Japan\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/11\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"name\": \"London\",\n                \"level\": 3,\n                \"lvl1_key\": \"Wholesale IT Services\",\n                \"lvl2_key\": \"Deegan Daggers\",\n                \"lvl3_key\": \"London\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/12\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"13\",\n            \"attributes\": {\n                \"name\": \"Brighton\",\n                \"level\": 3,\n                \"lvl1_key\": \"Wholesale IT Services\",\n                \"lvl2_key\": \"Deegan Daggers\",\n                \"lvl3_key\": \"Brighton\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/13\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"14\",\n            \"attributes\": {\n                \"name\": \"Zeist\",\n                \"level\": 3,\n                \"lvl1_key\": \"Wholesale IT Services\",\n                \"lvl2_key\": \"Boezem Bezems\",\n                \"lvl3_key\": \"Zeist\",\n                \"lvl4_key\": \"\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/14\"\n            }\n        },\n        {\n            \"type\": \"account\",\n            \"id\": \"15\",\n            \"attributes\": {\n                \"name\": \"Marketing\",\n                \"level\": 4,\n                \"lvl1_key\": \"Mucho Cloud Corp\",\n                \"lvl2_key\": \"Fresh Bakery Inc\",\n                \"lvl3_key\": \"Europe\",\n                \"lvl4_key\": \"Marketing\",\n                \"lvl5_key\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net:8002/v1/accounts/15\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2015,\n            \"count\": 15,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 135\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net:8002/v1/accounts?page%5Blimit%5D=&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net:8002/v1/accounts?page%5Blimit%5D=&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"https://dev.exivity.net:8002/v1/accounts?page%5Blimit%5D=&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"https://dev.exivity.net:8002/v1/accounts?page%5Blimit%5D=&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=135\"\n    }\n}"}],"_postman_id":"26443a67-def1-4270-80e8-1c00f8b88af2"},{"name":"Add a new account","event":[{"listen":"test","script":{"id":"f1db7943-8bd5-4f22-bb68-bccb61631018","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('account');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","\t\t\"name\",","\t\t\"level\",","\t\t\"lvl1_key\",","\t\t\"lvl2_key\",","\t\t\"lvl3_key\",","\t\t\"lvl4_key\",","\t\t\"lvl5_key\",","\t]);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"account_id\", response.data.id);","console.log('SET account_id: ' + pm.environment.get(\"account_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"00a82d07-f54f-4338-9db7-c88cbc6e3f7e","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.requireReport)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });"],"type":"text/javascript"}}],"id":"2b212797-442d-43e7-a8c0-e284cc531c69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"account\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"My new account\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"report\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"report\",\r\n\t\t\t\t\t\"id\": \"{{report_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/accounts","urlObject":{"path":["v2","accounts"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"0bb8e0f1-0668-4f24-afba-ad730f874599","name":"Add a new account with a parent","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"account\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"My new account\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"report\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"report\",\r\n\t\t\t\t\t\"id\": \"1\"\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\t\"parent\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"account\",\r\n\t\t\t\t\t\"id\": \"50\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v1/accounts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Wed, 24 Jul 2019 09:06:27 GMT"},{"key":"Date","value":"Wed, 24 Jul 2019 09:06:27 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.3.6"},{"key":"Location","value":"https://localhost:8012/v1/account/51"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xf09c59da7e0aae44acf4a03b5c141f7f"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"Access-Control-Allow-Origin","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"account\",\n        \"id\": \"51\",\n        \"attributes\": {\n            \"name\": \"My new account\",\n            \"level\": \"2\",\n            \"lvl1_key\": \"My new account\",\n            \"lvl2_key\": \"My new account\",\n            \"lvl3_key\": \"\",\n            \"lvl4_key\": \"\",\n            \"lvl5_key\": \"\"\n        },\n        \"links\": {\n            \"self\": \"https://localhost:8012/v1/accounts/51\"\n        }\n    }\n}"}],"_postman_id":"2b212797-442d-43e7-a8c0-e284cc531c69"},{"name":"Retrieve an account","event":[{"listen":"test","script":{"id":"e06157e9-4add-42a4-bbad-8815292cd722","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('account');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"account_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.name).to.be.a('string');","    pm.expect(response.data.attributes.level).to.be.a('number');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript","packages":{}}}],"id":"e28b6850-9b99-46a9-b529-694f643bea73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/accounts/:account_id/?include","urlObject":{"path":["v2","accounts",":account_id",""],"host":["{{base_url}}"],"query":[{"key":"include","value":null}],"variable":[{"type":"any","value":"{{account_id}}","key":"account_id"}]}},"response":[{"id":"00962e76-bc62-42c2-b7bc-7aa2367abbbd","name":"Retrieve an account","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/accounts/:account_id/?include","host":["{{base_url}}"],"path":["v2","accounts",":account_id",""],"query":[{"key":"include","value":null,"description":"Include additional related resources. Possible values: `report`, `parent`, `children`, `rates`, `adjustments`, `users`."}],"variable":[{"key":"account_id","value":"{{account_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 13:26:36 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-3wyorsDBeWOQMsWRrRoDRIz1kZW22Ah8';style-src 'self' 'nonce-3wyorsDBeWOQMsWRrRoDRIz1kZW22Ah8';font-src 'self' data:"},{"key":"Request-Id","value":"7e29eba8-f143-4cf1-b74b-7a1e83028aff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"account\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"Mucho Cloud Corp\",\n            \"level\": 1,\n            \"lvl1_key\": \"Mucho Cloud Corp\",\n            \"lvl2_key\": \"\",\n            \"lvl3_key\": \"\",\n            \"lvl4_key\": \"\",\n            \"lvl5_key\": \"\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/accounts/1\"\n        },\n        \"relationships\": {\n            \"adjustments\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/accounts/1/relationships/adjustments\",\n                    \"related\": \"https://dev.exivity.net/v2/accounts/1/adjustments\"\n                }\n            },\n            \"children\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/accounts/1/relationships/children\",\n                    \"related\": \"https://dev.exivity.net/v2/accounts/1/children\"\n                }\n            },\n            \"metadata\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/accounts/1/relationships/metadata\",\n                    \"related\": \"https://dev.exivity.net/v2/accounts/1/metadata\"\n                }\n            },\n            \"parent\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/accounts/1/relationships/parent\",\n                    \"related\": \"https://dev.exivity.net/v2/accounts/1/parent\"\n                }\n            },\n            \"rates\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/accounts/1/relationships/rates\",\n                    \"related\": \"https://dev.exivity.net/v2/accounts/1/rates\"\n                }\n            },\n            \"report\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/accounts/1/relationships/report\",\n                    \"related\": \"https://dev.exivity.net/v2/accounts/1/report\"\n                }\n            },\n            \"users\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/accounts/1/relationships/users\",\n                    \"related\": \"https://dev.exivity.net/v2/accounts/1/users\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"e28b6850-9b99-46a9-b529-694f643bea73"},{"name":"Update an account","event":[{"listen":"test","script":{"id":"3bb739b6-7723-4644-a2f8-bcd441027806","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('account');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","\t\t\"name\",","\t\t\"level\",","\t\t\"lvl1_key\",","\t\t\"lvl2_key\",","\t\t\"lvl3_key\",","\t\t\"lvl4_key\",","\t\t\"lvl5_key\",","\t]);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});",""],"type":"text/javascript"}}],"id":"eb6e5b81-0601-4f98-a185-b270e778a4c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"account\",\r\n    \"id\": \"{{account_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"My new account name\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/accounts/:account_id","urlObject":{"path":["v2","accounts",":account_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{account_id}}","key":"account_id"}]}},"response":[],"_postman_id":"eb6e5b81-0601-4f98-a185-b270e778a4c3"},{"name":"Delete an account","event":[{"listen":"test","script":{"id":"56d5117a-2057-4a1c-a374-b5acc218789e","exec":["// Currently, accounts are read-only","pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","","console.log('UNSET account_id');","pm.environment.unset(\"account_id\");"],"type":"text/javascript"}}],"id":"0791f55b-2d14-410d-8c62-00d943af93a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/accounts/:account_id","urlObject":{"path":["v2","accounts",":account_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":null,"key":"account_id"}]}},"response":[],"_postman_id":"0791f55b-2d14-410d-8c62-00d943af93a2"}],"id":"71379876-4e58-479f-92ed-20ebf15a786c","description":"<p>Atomic support: ✔️</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/reports/accounts\">https://docs.exivity.com/reports/accounts</a></p>\n<h4 id=\"the-account-object\">The Account Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutabilty</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required, unique and max 255 chars.</td>\n</tr>\n<tr>\n<td>level</td>\n<td><em>integer (between 1-5)</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>level_keys</td>\n<td><em>array of objects</em></td>\n<td>👁 read-only</td>\n<td>See level_key objects below</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"the-level_key-object\">The level_key object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutabilty</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>level</td>\n<td><em>integer (between 1-5)</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>key</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reportdefinition</td>\n<td>hasOne</td>\n<td>reportdefintion</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>parent</td>\n<td>hasOne</td>\n<td>account</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>children</td>\n<td>hasMany</td>\n<td>account</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>rates</td>\n<td>hasMany</td>\n<td>rate</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>adjustments</td>\n<td>hasMany</td>\n<td>adjustment</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>users</td>\n<td>hasMany</td>\n<td>user</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td>hasMany</td>\n<td>metadata</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>budgetitems</td>\n<td>hasMany</td>\n<td>budgetitem</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>servicesubscriptions</td>\n<td>hasMany</td>\n<td>servicesubscription</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"71379876-4e58-479f-92ed-20ebf15a786c"},{"name":"/budgets","item":[{"name":"Retrieve a list of budgets","event":[{"listen":"test","script":{"id":"280b918d-0cb7-4e44-82e6-7114cd587cb5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"992a6681-0ffe-4560-aa0c-df7ece916b9d","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"b82c6e6d-e662-46dd-9806-8f5b189638ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgets?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","budgets"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>report</code>, <code>revisions</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[],"_postman_id":"b82c6e6d-e662-46dd-9806-8f5b189638ef"},{"name":"Add a new budget","event":[{"listen":"test","script":{"id":"bb7cf659-f1b4-451a-b9eb-8f805d03433d","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budget');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.interval).to.eql('year');","    pm.expect(response.data.attributes.description).to.eql('This is a new budget');","    pm.expect(response.data.attributes.metric).to.eql('cogs');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"budget_id\", response.data.id);","console.log('SET budget_id: ' + pm.environment.get(\"budget_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"d2d7fb01-5a5b-4367-be38-91dab43edb75","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReport)\r","    .then(api.requireAccount)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"15215ea6-a2c1-4856-a7ae-09cea2621b60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"budget\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"interval\": \"year\",\r\n\t\t\t\"description\": \"This is a new budget\",\r\n\t\t\t\"metric\": \"cogs\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"report\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"report\",\r\n\t\t\t\t\t\"id\"  : \"{{report_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/budgets","urlObject":{"path":["v2","budgets"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"8eeadf12-3574-4584-beca-f45d101d92a2","name":"Add a new budget","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"budget\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"interval\": \"year\",\r\n\t\t\t\"description\": \"This is a new budget\",\r\n\t\t\t\"metric\": \"cogs\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"report\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"report\",\r\n\t\t\t\t\t\"id\"  : \"{{report_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/budgets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 13:14:24 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/Budget/Budgets"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-KQ0bQgHOuI3Zqanq5UpxIbUVJwIaFXnC';style-src 'self' 'nonce-KQ0bQgHOuI3Zqanq5UpxIbUVJwIaFXnC';font-src 'self' data:"},{"key":"Request-Id","value":"814f17f9-8d41-4e3a-a3c9-4ac303d2549f"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"budget\",\n        \"id\": \"7\",\n        \"attributes\": {\n            \"interval\": \"year\",\n            \"description\": \"This is a new budget\",\n            \"metric\": \"charge\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/budgets/7\"\n        },\n        \"relationships\": {\n            \"revisions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgets/7/relationships/revisions\",\n                    \"related\": \"https://dev.exivity.net/v2/budgets/7/revisions\"\n                }\n            },\n            \"items\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgets/7/relationships/items\",\n                    \"related\": \"https://dev.exivity.net/v2/budgets/7/items\"\n                }\n            },\n            \"report\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgets/7/relationships/report\",\n                    \"related\": \"https://dev.exivity.net/v2/budgets/7/report\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"15215ea6-a2c1-4856-a7ae-09cea2621b60"},{"name":"Retrieve a budget","event":[{"listen":"test","script":{"id":"c9fa246e-4bb0-49dc-9830-f85c7a7ddfc6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budget');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.interval).to.eql('year');","    pm.expect(response.data.attributes.description).to.eql('This is a new budget');","    pm.expect(response.data.attributes.metric).to.eql('cogs');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"3b1ccb0d-cd76-4a49-8f36-18d9d7351d60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgets/:budget_id?include=","urlObject":{"path":["v2","budgets",":budget_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources: <code>revisions</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"id":"13573eb0-0e43-4692-995d-dde7c4831101","type":"string","value":"{{budget_id}}","key":"budget_id"}]}},"response":[{"id":"b17ad496-be67-4fd3-85c9-ec359a7d452a","name":"Retrieve a budget","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/budgets/:budget_id?include=","host":["{{base_url}}"],"path":["v2","budgets",":budget_id"],"query":[{"key":"include","value":"","description":"Include additional related resources: `revisions`"}],"variable":[{"id":"13573eb0-0e43-4692-995d-dde7c4831101","key":"budget_id","value":"{{budget_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 13:39:36 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-stNH15aKCa7f6V3dhCg672z3DpWCUjJn';style-src 'self' 'nonce-stNH15aKCa7f6V3dhCg672z3DpWCUjJn';font-src 'self' data:"},{"key":"Request-Id","value":"f1614a26-6bf2-4bbe-8b40-77e058432b8d"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"budget\",\n        \"id\": \"7\",\n        \"attributes\": {\n            \"interval\": \"year\",\n            \"description\": \"This is a new budget\",\n            \"metric\": \"charge\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/budgets/7\"\n        },\n        \"relationships\": {\n            \"revisions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgets/7/relationships/revisions\",\n                    \"related\": \"https://dev.exivity.net/v2/budgets/7/revisions\"\n                }\n            },\n            \"items\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgets/7/relationships/items\",\n                    \"related\": \"https://dev.exivity.net/v2/budgets/7/items\"\n                }\n            },\n            \"report\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgets/7/relationships/report\",\n                    \"related\": \"https://dev.exivity.net/v2/budgets/7/report\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"3b1ccb0d-cd76-4a49-8f36-18d9d7351d60"},{"name":"Update a budget","event":[{"listen":"test","script":{"id":"a0168a3f-8cd8-4476-8038-5c45997426b2","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budget');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"budget_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.description).to.eql('modified_test');","    pm.expect(response.data.attributes.interval).to.eql('year');","    pm.expect(response.data.attributes.metric).to.eql('cogs');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","postman.setNextRequest(\"Add a new budget revision\");",""],"type":"text/javascript"}}],"id":"ff84235b-131c-4142-adaf-a5e4306a7810","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"budget\",\r\n\t\t\"id\": \"{{budget_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"description\": \"modified_test\",\r\n\t\t\t\"interval\": \"year\",\r\n\t\t\t\"metric\": \"cogs\"\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/budgets/:budget_id","urlObject":{"path":["v2","budgets",":budget_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"ea3caf1c-9c24-43fc-a328-388adc13e959","type":"string","value":"{{budget_id}}","key":"budget_id"}]}},"response":[],"_postman_id":"ff84235b-131c-4142-adaf-a5e4306a7810"},{"name":"Delete a budget","event":[{"listen":"test","script":{"id":"c2fce7c0-ad5b-44b0-b7eb-fee39a9ad270","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET budget_id');","pm.environment.unset(\"budget_id\");"],"type":"text/javascript"}}],"id":"be94359e-3def-4d4e-9872-52cd7a5d894f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/budgets/:budget_id","urlObject":{"path":["v2","budgets",":budget_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"5571b6cf-6509-4a2c-a7d7-cdaa595b6d39","type":"string","value":"{{budget_id}}","key":"budget_id"}]}},"response":[],"_postman_id":"be94359e-3def-4d4e-9872-52cd7a5d894f"},{"name":"Run a budget","event":[{"listen":"test","script":{"id":"97fac793-8e4e-4572-b7cf-06e3a96eb888","exec":["pm.test(\"Status code is 422\", function () {","    pm.response.to.have.status(422);","});","","const response = pm.response.json();","//nsole.log(response);","","pm.test(\"Response contains error\", function () {","    pm.expect(response.errors).to.be.an('array');","    pm.expect(response.errors[0].status).to.eql(422);","    pm.expect(response.errors[0].title).to.eql('ValidationException');","    pm.expect(response.errors[0].detail).to.eql('Horizon error response: Cannot find revision for 2:20170101');","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"0ead3937-4b76-454e-9064-50f92df0f031","exec":["// Need valid report ID\r","pm.environment.set(\"report_id\", 1);\r","\r","const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReport)\r","    .then(api.requireAccount)\r","    .then(api.requireBudget)\r","    .then(api.requireBudgetRevision)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"035c4513-bad6-47cb-8ebd-cc23a59fd190","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgets/:budget_id/run?start={{start}}&end={{end}}","urlObject":{"path":["v2","budgets",":budget_id","run"],"host":["{{base_url}}"],"query":[{"key":"start","value":"{{start}}"},{"key":"end","value":"{{end}}"}],"variable":[{"id":"e3fa021c-209c-4623-9275-5ecdef60b9a1","type":"string","value":"{{budget_id}}","key":"budget_id"}]}},"response":[],"_postman_id":"035c4513-bad6-47cb-8ebd-cc23a59fd190"}],"id":"081d8203-8048-4728-8752-da56b1eb37d3","description":"<p>Atomic support: ✔️</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/reports/budget\">https://docs.exivity.com/reports/budget</a></p>\n<p><strong>To create a budget</strong></p>\n<ol>\n<li>Create a budget object</li>\n<li>Create a budget revision</li>\n<li>Add budget items to the budget revision</li>\n</ol>\n<h2 id=\"the-budget-object\">The Budget Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>interval</td>\n<td><em>enum</em> (<code>month</code>, <code>quarter</code>, <code>year</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>metric</td>\n<td><em>enum</em> (<code>charge</code>, <code>cogs</code>)</td>\n<td>📝 editable</td>\n<td>Defaults to <code>charge</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reportdefinition</td>\n<td>hasOne</td>\n<td>reportdefintion</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>revisions</td>\n<td>hasMany</td>\n<td>budgetrevision</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"081d8203-8048-4728-8752-da56b1eb37d3"},{"name":"/budgetrevisions","item":[{"name":"Retrieve a list of budgets revisions","event":[{"listen":"test","script":{"id":"9eaec45c-1777-44a1-ab92-e1c2fb9783fb","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"0229c74c-f056-466e-838c-aab77f79d0d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgetrevisions?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","budgetrevisions"],"host":["{{base_url}}"],"query":[{"key":"page[limit]","value":null},{"key":"page[offset]","value":null},{"key":"sort","value":null},{"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>budget</code>, <code>items</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[],"_postman_id":"0229c74c-f056-466e-838c-aab77f79d0d4"},{"name":"Add a new budget revision","event":[{"listen":"test","script":{"id":"b2f3cb6f-8c9a-4d2e-9d76-176b2751739b","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budgetrevision');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.effective_from).to.eql('2019-06-06');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"budgetrevision_id\", response.data.id);","console.log('SET budgetrevision_id: ' + pm.environment.get(\"budgetrevision_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2abb1720-5aae-47e8-959b-83f024867ac1","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReport)\r","    .then(api.requireBudget)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"9f36e0a6-3c7d-4648-bee3-a5a1e60b1fdc","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"budgetrevision\",\n        \"attributes\": {\n            \"effective_from\": \"20190606\"\n        },\n        \"relationships\": {\n        \t\"budget\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"budget\",\n        \t\t\t\"id\": \"{{budget_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}"},"url":"{{base_url}}/v2/budgetrevisions","urlObject":{"path":["v2","budgetrevisions"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"2466a271-f16a-4983-b42c-9772a386013b","name":"Add a new budget revision","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"budgetrevision\",\n        \"attributes\": {\n            \"effective_from\": \"20190606\"\n        },\n        \"relationships\": {\n        \t\"budget\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"budget\",\n        \t\t\t\"id\": \"{{budget_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}"},"url":"{{base_url}}/v2/budgetrevisions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 13:54:56 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/BudgetRevision/BudgetRevisions"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-JQdsQnwVGn5Fie6mrlRzlvRlmu5dINSv';style-src 'self' 'nonce-JQdsQnwVGn5Fie6mrlRzlvRlmu5dINSv';font-src 'self' data:"},{"key":"Request-Id","value":"813e9c6b-ca1a-4c1e-977f-64687fef06dc"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"budgetrevision\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"effective_from\": \"2019-06-06\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/budgetrevisions/9\"\n        },\n        \"relationships\": {\n            \"budget\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetrevisions/9/relationships/budget\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetrevisions/9/budget\"\n                }\n            },\n            \"items\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetrevisions/9/relationships/items\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetrevisions/9/items\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"9f36e0a6-3c7d-4648-bee3-a5a1e60b1fdc"},{"name":"Retrieve a budget revision","event":[{"listen":"test","script":{"id":"b5f24665-d116-44d0-8e0f-2b1f04286a38","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budgetrevision');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.effective_from).to.eql('2019-06-06');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"db845ca4-8037-4752-a206-e2db52b62ae2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgetrevisions/:revision_id?include=","urlObject":{"path":["v2","budgetrevisions",":revision_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>budget</code>, <code>items</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"id":"6dc584c5-ec65-4046-a8f9-db54babbddbd","type":"string","value":"{{budgetrevision_id}}","key":"revision_id"}]}},"response":[{"id":"e48af314-c66b-4f2d-b6d7-93ab1af05c8f","name":"Retrieve a budget revision","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/budgetrevisions/:revision_id?include=","host":["{{base_url}}"],"path":["v2","budgetrevisions",":revision_id"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `budget`, `items`"}],"variable":[{"id":"6dc584c5-ec65-4046-a8f9-db54babbddbd","key":"revision_id","value":"{{budgetrevision_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 13:56:53 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-0xfbiJgadbJJ6LTFUy4Z8z2wViLBGAIi';style-src 'self' 'nonce-0xfbiJgadbJJ6LTFUy4Z8z2wViLBGAIi';font-src 'self' data:"},{"key":"Request-Id","value":"c3d7c2f5-049d-46a8-9680-65d99cf8eba4"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"budgetrevision\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"effective_from\": \"2019-08-08\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/budgetrevisions/9\"\n        },\n        \"relationships\": {\n            \"budget\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetrevisions/9/relationships/budget\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetrevisions/9/budget\"\n                }\n            },\n            \"items\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetrevisions/9/relationships/items\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetrevisions/9/items\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"db845ca4-8037-4752-a206-e2db52b62ae2"},{"name":"Validate a budget revision","event":[{"listen":"test","script":{"id":"30a4c7ec-6dd3-4090-b070-d10168564ebf","exec":["// pm.test(\"Status code is 200\", function () {","//     pm.response.to.have.status(200);","// });",""],"type":"text/javascript"}}],"id":"2f1deef4-d900-4b62-96a0-022514618127","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgetrevisions/:revision_id/validate","urlObject":{"path":["v2","budgetrevisions",":revision_id","validate"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"2a96d091-6384-424d-9879-31eb4f851221","type":"string","value":"{{budgetrevision_id}}","key":"revision_id"}]}},"response":[],"_postman_id":"2f1deef4-d900-4b62-96a0-022514618127"},{"name":"Update a budget revision","event":[{"listen":"prerequest","script":{"id":"0543da8d-215f-4403-acba-e3d1fcdd2d4b","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireBudget)\r","    .then(api.requireBudgetRevision)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r","    "],"type":"text/javascript"}},{"listen":"test","script":{"id":"dd2d74fe-5246-43c5-aadc-4235a42d8faf","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budgetrevision');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.effective_from).to.eql('2019-08-08');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","postman.setNextRequest(\"Add a new budget item\");",""],"type":"text/javascript"}}],"id":"186ef3f8-72ea-48c0-93da-16e327ba5cd7","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"budgetrevision\",\n        \"id\":\"{{budgetrevision_id}}\",\n        \"attributes\": {\n            \"effective_from\": \"20190808\"\n        }\n    }\n}"},"url":"{{base_url}}/v2/budgetrevisions/:budget_revision_id","urlObject":{"path":["v2","budgetrevisions",":budget_revision_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"b2dc5e87-3cf4-4099-bf84-ca46ced81c10","type":"string","value":"{{budgetrevision_id}}","key":"budget_revision_id"}]}},"response":[],"_postman_id":"186ef3f8-72ea-48c0-93da-16e327ba5cd7"},{"name":"Delete a budget revision","event":[{"listen":"test","script":{"id":"896a1519-7c9c-4c0d-86a5-cd2e7caf5411","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET budgetrevision_id');","pm.environment.unset(\"budgetrevision_id\");"],"type":"text/javascript"}}],"id":"0f6fd89b-e0f3-46ae-956a-f4f1bb896a25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/budgetrevisions/:budget_revision_id","urlObject":{"path":["v2","budgetrevisions",":budget_revision_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"dc8e343d-69bf-4f54-b935-d36bd69a8082","type":"string","value":"{{budgetrevision_id}}","key":"budget_revision_id"}]}},"response":[],"_postman_id":"0f6fd89b-e0f3-46ae-956a-f4f1bb896a25"}],"id":"438b6fda-f3b9-406f-83f8-74a2f7cef410","description":"<p>Atomic support: ✔️</p>\n<p>Exivity documentation: <a href=\"https://desktop.postman.com/?desktopVersion=9.16.0&amp;userId=2892066&amp;teamId=48706\">https://docs.exivity.com/reports/budget</a></p>\n<h2 id=\"the-budget-revision-object\">The Budget Revision Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>effective_from</td>\n<td><em>date</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>budget</td>\n<td>hasOne</td>\n<td>budget</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>items</td>\n<td>hasMany</td>\n<td>budgetitem</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"438b6fda-f3b9-406f-83f8-74a2f7cef410"},{"name":"/budgetitems","item":[{"name":"Retrieve a list of budgets items","event":[{"listen":"test","script":{"id":"bf4d1e96-4d1c-4dc8-8a9f-02ad6a81bc7a","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"7d5fe99d-5cdb-40b0-bacd-c0c87241ddf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgetitems?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","budgetitems"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>revision</code>, <code>parent</code>, <code>children</code>, <code>account</code>, <code>services</code>, <code>servicecategories</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[],"_postman_id":"7d5fe99d-5cdb-40b0-bacd-c0c87241ddf2"},{"name":"Add a new budget item","event":[{"listen":"prerequest","script":{"id":"65005226-cfd0-4e00-ba4d-ee418a5e3306","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReport)\r","    .then(api.requireAccount)\r","    .then(api.requireBudget)\r","    .then(api.requireBudgetRevision)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"2c9fa805-3bed-4092-bc34-c812b2ef24b0","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budgetitem');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.kind).to.eql('account');","    pm.expect(response.data.attributes.status).to.eql('regular');","    pm.expect(response.data.attributes.filter).to.eql('none');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"budgetitem_id\", response.data.id);","console.log('SET budgetitem_id: ' + pm.environment.get(\"budgetitem_id\"));"],"type":"text/javascript"}}],"id":"f2d726a1-db62-44f3-8c4b-130a11188970","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"budgetitem\",\n        \"attributes\": {\n            \"kind\": \"account\",\n            \"status\": \"regular\",\n            \"percent\": false,\n            \"distribution\": \"even\",\n            \"filter\": \"none\"\n        },\n        \"relationships\": {\n        \t\"revision\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"budgetrevision\",\n        \t\t\t\"id\": \"{{budgetrevision_id}}\"\n        \t\t}\n        \t},\n        \t\"account\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"account\",\n        \t\t\t\"id\": \"{{account_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}"},"url":"{{base_url}}/v2/budgetitems","urlObject":{"path":["v2","budgetitems"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"204e8afd-d652-4743-88cd-6771dbb2cf44","name":"Add a new budget item with a parent item","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"budgetitem\",\n        \"attributes\": {\n            \"kind\": \"account\",\n            \"status\": \"regular\",\n            \"percent\": false,\n            \"distribution\": \"even\",\n            \"filter\": \"none\"\n        },\n        \"relationships\": {\n        \t\"revision\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"budgetrevision\",\n        \t\t\t\"id\": \"{{budgetrevision_id}}\"\n        \t\t}\n        \t},\n        \t\"account\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"account\",\n        \t\t\t\"id\": \"{{account_id}}\"\n        \t\t}\n        \t},\n        \t\"parent\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"item\",\n        \t\t\t\"id\": \"{{budgetitem_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}"},"url":"{{base_url}}/v1/budgetitems"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 26 Aug 2019 09:29:50 GMT"},{"key":"Date","value":"Mon, 26 Aug 2019 09:29:50 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.3.6"},{"key":"Location","value":"https://localhost:8012/v1/budgetitem/6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X91ef46877eaaf096034f2a823f457554"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"Access-Control-Allow-Origin","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"budgetitem\",\n        \"id\": \"6\",\n        \"attributes\": {\n            \"kind\": \"account\",\n            \"status\": \"regular\",\n            \"filter\": \"none\",\n            \"amount\": null,\n            \"percent\": false,\n            \"distribution\": \"even\"\n        },\n        \"links\": {\n            \"self\": \"https://localhost:8012/v1/budgetitems/6\"\n        }\n    }\n}"}],"_postman_id":"f2d726a1-db62-44f3-8c4b-130a11188970"},{"name":"Retrieve a budget item","event":[{"listen":"test","script":{"id":"ad6dabe9-5db5-4944-9903-272e652ec41c","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budgetitem');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.kind).to.eql('account');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"c833c711-53aa-4b00-b661-a7c488e8488b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/budgetitems/:item_id?include=","urlObject":{"path":["v2","budgetitems",":item_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>revision</code>, <code>parent</code>, <code>children</code>, <code>account</code>, <code>services</code>, <code>servicecategories</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"id":"e9efd407-af2a-4a21-81df-66246ad3f368","type":"string","value":"{{budgetitem_id}}","key":"item_id"}]}},"response":[{"id":"8fe460fa-2c30-41f2-a9d2-c37cdc4b083e","name":"Retrieve a budget item","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/budgetitems/:item_id?include=","host":["{{base_url}}"],"path":["v2","budgetitems",":item_id"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `revision`, `parent`, `children`, `account`, `services`, `servicecategories`"}],"variable":[{"id":"e9efd407-af2a-4a21-81df-66246ad3f368","key":"item_id","value":"{{budgetitem_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 15:48:27 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-3d2tXysA1nKLhw3QO6SFXbXjcr0IS7AA';style-src 'self' 'nonce-3d2tXysA1nKLhw3QO6SFXbXjcr0IS7AA';font-src 'self' data:"},{"key":"Request-Id","value":"dda86bd3-a016-4062-bf3a-23388cb8460f"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"budgetitem\",\n        \"id\": \"31\",\n        \"attributes\": {\n            \"kind\": \"account\",\n            \"status\": \"regular\",\n            \"filter\": \"none\",\n            \"amount\": null,\n            \"percent\": false,\n            \"distribution\": \"none\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/budgetitems/31\"\n        },\n        \"relationships\": {\n            \"revision\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetitems/31/relationships/revision\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetitems/31/revision\"\n                }\n            },\n            \"parent\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetitems/31/relationships/parent\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetitems/31/parent\"\n                }\n            },\n            \"children\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetitems/31/relationships/children\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetitems/31/children\"\n                }\n            },\n            \"account\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetitems/31/relationships/account\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetitems/31/account\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetitems/31/relationships/services\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetitems/31/services\"\n                }\n            },\n            \"servicecategories\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/budgetitems/31/relationships/servicecategories\",\n                    \"related\": \"https://dev.exivity.net/v2/budgetitems/31/servicecategories\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"c833c711-53aa-4b00-b661-a7c488e8488b"},{"name":"Update a budget item","event":[{"listen":"test","script":{"id":"51500fd0-c8de-447c-9970-dceb11e55b71","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('budgetitem');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.amount).to.eql(100);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});",""],"type":"text/javascript"}}],"id":"dcd8f56c-ab2e-4f5c-9cbe-c20aa0bfde36","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"budgetitem\",\n        \"id\":\"{{budgetitem_id}}\",\n        \"attributes\": {\n            \"amount\": 100\n        }\n    }\n}"},"url":"{{base_url}}/v2/budgetitems/:budgetitem_id","urlObject":{"path":["v2","budgetitems",":budgetitem_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"6f01870e-c1b9-4340-848a-d392bcee9591","type":"string","value":"{{budgetitem_id}}","key":"budgetitem_id"}]}},"response":[],"_postman_id":"dcd8f56c-ab2e-4f5c-9cbe-c20aa0bfde36"},{"name":"Delete a budget item","event":[{"listen":"test","script":{"id":"12ba314b-98d3-439b-a42f-d497f353eaf5","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET budgetitem_id');","pm.environment.unset(\"budgetitem_id\");","","postman.setNextRequest(\"Delete a budget\");","postman.setNextRequest(\"Delete a budget revision\");","postman.setNextRequest(\"Add a new metadata definition\");",""],"type":"text/javascript"}}],"id":"32b1c75c-8d29-4435-91de-98ffc0d6b176","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/budgetitems/:budgetitem_id","urlObject":{"path":["v2","budgetitems",":budgetitem_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"f28f07a8-70fc-4063-a11d-0551d818ca03","type":"string","value":"{{budgetitem_id}}","key":"budgetitem_id"}]}},"response":[],"_postman_id":"32b1c75c-8d29-4435-91de-98ffc0d6b176"},{"name":"Patch budget items (add, create, delete)","event":[{"listen":"test","script":{"id":"31b2ea31-e23f-42f6-9c98-b29f4b985824","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ca4cdb3e-bced-4cf1-bfec-2598ff94a7d6","exec":[""],"type":"text/javascript"}}],"id":"ba1175d5-95af-44e9-9f84-84a53c51e864","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"operations\": [\n\t\t{\n\t\t\t\"op\": \"add\",\n\t\t\t\"data\": {\n\t\t        \"type\":\"budgetitem\",\n\t\t        \"attributes\": {\n\t\t            \"kind\": \"account\",\n\t\t            \"status\": \"regular\",\n\t\t            \"percent\": 0,\n\t\t            \"distribution\": \"even\",\n\t\t            \"filter\": \"none\"\n\t\t        },\n\t\t        \"relationships\": {\n\t\t        \t\"revision\": {\n\t\t        \t\t\"data\": {\n\t\t        \t\t\t\"type\": \"budgetrevision\",\n\t\t        \t\t\t\"id\": \"{{budgetrevision_id}}\"\n\t\t        \t\t}\n\t\t        \t},\n\t\t        \t\"account\": {\n\t\t        \t\t\"data\": {\n\t\t        \t\t\t\"type\": \"account\",\n\t\t        \t\t\t\"id\": \"{{account_id}}\"\n\t\t        \t\t}\n\t\t        \t}\n\t\t        }\n\t\t    }\n\t\t},\n\t\t{\n\t\t\t\"op\": \"delete\",\n            \"data\": {\n            \t\"type\": \"budgetitem\",\n            \t\"id\": \"{{item_id}}\"\n            }\n\t\t},\n\t\t{\n\t\t\t\"op\":\"update\",\n            \"data\": {\n                \"type\": \"budgetitem\",\n                \"attributes\": {\n                    \"kind\": \"service\"\n                }\n            }\n\t\t}\n\t]\n}\n"},"url":"{{base_url}}/v2/budgetitems","urlObject":{"path":["v2","budgetitems"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba1175d5-95af-44e9-9f84-84a53c51e864"}],"id":"d5bb095c-3053-4b8c-87be-97e0c364f289","description":"<p>Atomic support: ✔️</p>\n<p>Exivity documentation: <a href=\"https://desktop.postman.com/?desktopVersion=9.16.0&amp;userId=2892066&amp;teamId=48706\">https://docs.exivity.com/reports/budget</a></p>\n<h2 id=\"the-budget-item-object\">The Budget Item Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>kind</td>\n<td><em>enum</em> (<code>account</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>status</td>\n<td><em>enum</em> (<code>regular</code>, <code>excluded</code>, <code>remainder</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>amount</td>\n<td><em>double</em></td>\n<td>📝 editable</td>\n<td></td>\n</tr>\n<tr>\n<td>percent</td>\n<td><em>boolean</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>distribution</td>\n<td><em>enum</em> (<code>none</code>, <code>even</code>, <code>shared</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>filter</td>\n<td><em>enum</em> (<code>none</code>, <code>servicecategory</code>, <code>service</code>)</td>\n<td>📝 editable</td>\n<td>Defaults to <code>none</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>revision</td>\n<td>hasOne</td>\n<td>budgetrevision</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>account</td>\n<td>hasMany</td>\n<td>account</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>parent</td>\n<td>hasOne</td>\n<td>budgetitem</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>children</td>\n<td>hasMany</td>\n<td>budgetitem</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>servicecategories</td>\n<td>hasMany</td>\n<td>servicecategory</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>services</td>\n<td>hasMany</td>\n<td>services</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d5bb095c-3053-4b8c-87be-97e0c364f289"}],"id":"497d81a9-1b1e-4d1d-aa2d-21ac3dd572fb","_postman_id":"497d81a9-1b1e-4d1d-aa2d-21ac3dd572fb","description":""},{"name":"Data pipelines","item":[{"name":"/extractors","item":[{"name":"Retrieve a list of extractors","event":[{"listen":"test","script":{"id":"a5321961-76d3-4668-8e67-625cd30e4760","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"515ed917-091a-4329-8e70-425d62ed8c99","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"4c1b13ae-cbd0-4edd-89d1-f4db54334335","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/extractors","urlObject":{"path":["v2","extractors"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"1ae44909-a9ab-47f6-959e-5c3db49493dd","name":"Retrieve a list of extractors","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/extractors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 09:42:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xb81cb559aa815becec8a2b94938b42e8"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xb81cb559aa815becec8a2b94938b42e8"},{"key":"ETag","value":"\"d7b668c9710182ac6ce06bd182280bfb\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-uDj5sOuZ1PDonfEDaXavfT6MwEs8FX6e';style-src 'self' 'nonce-uDj5sOuZ1PDonfEDaXavfT6MwEs8FX6e';font-src 'self' data:"},{"key":"Request-Id","value":"2c8b8d7c-d740-46c8-94a5-9c26931626c5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"extractor\",\n            \"id\": \"Extractor_1\",\n            \"attributes\": {\n                \"name\": \"Extractor_1\",\n                \"contents\": \"print Hello\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypted var key3 = FeBtNpkfbyD4ePKU+EXOwQ==\",\n                \"variables\": [\n                    {\n                        \"name\": \"key2\",\n                        \"value\": \"value2\",\n                        \"type\": \"normal\",\n                        \"line\": 3,\n                        \"comment\": \"\"\n                    },\n                    {\n                        \"name\": \"key3\",\n                        \"value\": \"<encrypted>\",\n                        \"type\": \"encrypted\",\n                        \"line\": 4,\n                        \"comment\": \"\"\n                    }\n                ],\n                \"updated_at\": \"2024-06-13T11:44:32Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/extractors/Extractor_test_-_164\"\n            }\n        }\n    ]\n}"}],"_postman_id":"4c1b13ae-cbd0-4edd-89d1-f4db54334335"},{"name":"Add a new extractor","event":[{"listen":"test","script":{"id":"92535d0d-b2e7-41ea-9496-d1dce75dd6e4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.type).to.be.a('string');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes.name).to.be.a('string');","    pm.expect(response.data.attributes.contents).to.be.a('string');","    pm.expect(response.data.attributes.variables).to.be.a('array');","    pm.expect(response.data.attributes.hash).to.be.a('string');","    pm.expect(response.data.attributes.last_modified).to.be.a('string');","","    pm.expect(response.data.attributes.name).to.include('Extractor_test');","    pm.expect(response.data.attributes.contents.trim()).to.eql(\"print Hello\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypt var key3 = 0\");","    pm.expect(response.data.attributes.variables).to.eql([","        {","            \"name\": \"key2\",","            \"value\": \"value2\",","            \"type\": \"normal\",","            \"line\": 3,","            \"comment\": \"\"","        },","        {","            \"name\": \"key3\",","            \"value\": \"<encrypted>\",","            \"type\": \"encrypted\",","            \"line\": 4,","            \"comment\": \"\"","        }","    ]);","});","","pm.environment.set(\"extractor_name\", response.data.id);","console.log('SET extractor_name: ' + pm.environment.get(\"extractor_name\"));"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"b637fe35-a50d-4f07-802d-6eca6fc7d526","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireWorkflow)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","});"],"type":"text/javascript","packages":{}}}],"id":"a75fc02b-001d-4987-accf-9999166a2591","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"extractor\",\r\n        \"attributes\": {\r\n            \"name\": \"MyExtractor\",\r\n            \"contents\": \"print Hello\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypt var key3 = 0\",\r\n            \"variables\": \"\"\r\n        }\r\n    }\r\n}\r\n"},"url":"{{base_url}}/v2/extractors","urlObject":{"path":["v2","extractors"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"59f5c969-0752-4d2f-ac87-78b99fa7da4f","name":"Add a new extractor","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"extractor\",\r\n        \"attributes\": {\r\n            \"name\": \"My_Extractor\",\r\n            \"contents\": \"print Hello\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypt var key3 = 0\",\r\n            \"variables\": \"\"\r\n        }\r\n    }\r\n}\r\n"},"url":"{{base_url}}/v2/extractors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 09:53:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X0fe0690469d3457c4226a3b8c677ad84"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X0fe0690469d3457c4226a3b8c677ad84"},{"key":"ETag","value":"\"b6904e9aa51a2655df442b869e1b0689\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-dxnmfikXhIsD6aFDR89qmEHRplLFtTfg';style-src 'self' 'nonce-dxnmfikXhIsD6aFDR89qmEHRplLFtTfg';font-src 'self' data:"},{"key":"Request-Id","value":"a0e3e67f-bf94-41b3-a303-f098d088b102"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"extractor\",\n        \"id\": \"My_Extractor\",\n        \"attributes\": {\n            \"name\": \"My_Extractor\",\n            \"contents\": \"print Hello\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypted var key3 = FeBtNpkfbyD4ePKU+EXOwQ==\",\n            \"variables\": [\n                {\n                    \"name\": \"key2\",\n                    \"value\": \"value2\",\n                    \"type\": \"normal\",\n                    \"line\": 3,\n                    \"comment\": \"\"\n                },\n                {\n                    \"name\": \"key3\",\n                    \"value\": \"<encrypted>\",\n                    \"type\": \"encrypted\",\n                    \"line\": 4,\n                    \"comment\": \"\"\n                }\n            ],\n            \"updated_at\": \"2024-12-03T09:53:33Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/extractors/My_Extractor\"\n        }\n    }\n}"}],"_postman_id":"a75fc02b-001d-4987-accf-9999166a2591"},{"name":"Retrieve an extractor","event":[{"listen":"test","script":{"id":"1c89f2e2-6292-42e7-a655-60abcfe27b1d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.type).to.be.a('string');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes.name).to.be.a('string');","    pm.expect(response.data.attributes.contents).to.be.a('string');","    pm.expect(response.data.attributes.variables).to.be.a('array');","    pm.expect(response.data.attributes.hash).to.be.a('string');","    pm.expect(response.data.attributes.last_modified).to.be.a('string');","","    pm.expect(response.data.type).to.eql('extractor');","    pm.expect(response.data.id).to.include('Extractor_test');","    pm.expect(response.data.attributes.name).to.include('Extractor_test');","    pm.expect(response.data.attributes.contents.trim()).to.include(\"print Hello\");","    pm.expect(response.data.attributes.contents.trim()).to.include(\"var key1 = value1\");","    pm.expect(response.data.attributes.contents.trim()).to.include(\"public var key2 = value2\");","    pm.expect(response.data.attributes.contents.trim()).to.include(\"public encrypted var key3 =\");","    pm.expect(response.data.attributes.variables).to.eql([","        {","            \"name\": \"key2\",","            \"value\": \"value2\",","            \"type\": \"normal\",","            \"line\": 3,","            \"comment\": \"\"","        },","        {","            \"name\": \"key3\",","            \"value\": \"<encrypted>\",","            \"type\": \"encrypted\",","            \"line\": 4,","            \"comment\": \"\"","        }","    ]);","});"],"type":"text/javascript"}}],"id":"ec2c29d3-a2b9-4c65-b2e5-ef539da45278","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/extractors/:extractor_id","urlObject":{"path":["v2","extractors",":extractor_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{extractor_name}}","key":"extractor_id"}]}},"response":[{"id":"7d42b1ae-9fbe-4939-9089-2c67ce2a8224","name":"Retrieve an extractor","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/extractors/:extractor_id","host":["{{base_url}}"],"path":["v2","extractors",":extractor_id"],"variable":[{"key":"extractor_id","value":"dummy-extractor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 20 May 2022 13:24:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ci1roiEtMioitHRcS4KKdTUCyPLKHoFW';style-src 'self' 'nonce-ci1roiEtMioitHRcS4KKdTUCyPLKHoFW';font-src 'self' data:"},{"key":"Request-Id","value":"129f158c-32cc-4896-add3-60d4e56019cb"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"extractor\",\n        \"id\": \"dummy-extractor\",\n        \"attributes\": {\n            \"name\": \"dummy-extractor\",\n            \"contents\": \"# Dummy data generated extractor\\n\\nprint \\\"Hello World\\\"\",\n            \"variables\": [],\n            \"updated_at\": \"2024-12-03T09:54:03Z\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/extractors/dummy-extractor\"\n        }\n    }\n}\n"}],"_postman_id":"ec2c29d3-a2b9-4c65-b2e5-ef539da45278"},{"name":"Update an extractor (contents)","event":[{"listen":"test","script":{"id":"a5216c5e-927d-4f28-9d7c-2014b841f5a6","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function() {","    pm.expect(response).to.be.an('object');","});","","pm.test(\"Response contains correct attributes\", function() {","    pm.expect(response.data.type).to.be.a('string');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes.name).to.be.a('string');","    pm.expect(response.data.attributes.contents).to.be.a('string');","    pm.expect(response.data.attributes.variables).to.be.a('array');","    pm.expect(response.data.attributes.hash).to.be.a('string');","    pm.expect(response.data.attributes.last_modified).to.be.a('string');","","    pm.expect(response.data.type).to.eql('extractor');","    pm.expect(response.data.id).to.include('Extractor_test');","    pm.expect(response.data.attributes.name).to.include('Extractor_test');","    pm.expect(response.data.attributes.contents.trim()).to.eql(\"print Hello world\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypted var key3 = 0\");","    pm.expect(response.data.attributes.variables).to.eql([{","        \"name\": \"key2\",","        \"value\": \"value2\",","        \"type\": \"normal\",","        \"line\": 3,","        \"comment\": \"\"","    }, {","        \"name\": \"key3\",","        \"value\": \"<encrypted>\",","        \"type\": \"encrypted\",","        \"line\": 4,","        \"comment\": \"\"","    }]);","});"],"type":"text/javascript"}}],"id":"555d6704-35ad-41d2-8810-3e4e66f603b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"extractor\",\r\n        \"id\": \"{{extractor_name}}\",\r\n        \"attributes\": {\r\n            \"contents\": \"print Hello world\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypted var key3 = 0\"\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/extractors/:extractor_id","urlObject":{"path":["v2","extractors",":extractor_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{extractor_name}}","key":"extractor_id"}]}},"response":[{"id":"b4e4667e-2e7a-472e-a120-776e4d926bba","name":"Update an extractor (contents)","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"extractor\",\r\n        \"id\": \"{{extractor_name}}\",\r\n        \"attributes\": {\r\n            \"contents\": \"print Hello world\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypted var key3 = 0\"\r\n        }\r\n    }\r\n}"},"url":{"raw":"{{base_url}}/v2/extractors/:extractor_id","host":["{{base_url}}"],"path":["v2","extractors",":extractor_id"],"variable":[{"key":"extractor_id","value":"{{extractor_name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 09:55:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X56a100473ceb31d724d59d136898d70e"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X56a100473ceb31d724d59d136898d70e"},{"key":"ETag","value":"\"76b63bcd76d352fe4ed458a600372c59\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-LjF65DPgltUUzXDw9yXEuzVEolzNDpak';style-src 'self' 'nonce-LjF65DPgltUUzXDw9yXEuzVEolzNDpak';font-src 'self' data:"},{"key":"Request-Id","value":"bfaec25a-f8f2-48f8-beb0-8bd535ded688"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"extractor\",\n        \"id\": \"My_Extractor2\",\n        \"attributes\": {\n            \"name\": \"My_Extractor2\",\n            \"contents\": \"print Hello world\\nvar key1 = value1\\npublic var key2 = value2\\npublic encrypted var key3 = 0\",\n            \"variables\": [\n                {\n                    \"name\": \"key2\",\n                    \"value\": \"value2\",\n                    \"type\": \"normal\",\n                    \"line\": 3,\n                    \"comment\": \"\"\n                },\n                {\n                    \"name\": \"key3\",\n                    \"value\": \"<encrypted>\",\n                    \"type\": \"encrypted\",\n                    \"line\": 4,\n                    \"comment\": \"\"\n                }\n            ],\n            \"updated_at\": \"2024-12-03T09:55:44Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/extractors/My_Extractor2\"\n        }\n    }\n}"}],"_postman_id":"555d6704-35ad-41d2-8810-3e4e66f603b9"},{"name":"Update an extractor (variables)","event":[{"listen":"test","script":{"id":"5f3cf6d7-74c0-453f-89b7-86ec9f892d13","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","});","","pm.test(\"Response contains updated attributes\", function () {","    pm.expect(response.data.type).to.be.a('string');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes.name).to.be.a('string');","    pm.expect(response.data.attributes.contents).to.be.a('string');","    pm.expect(response.data.attributes.variables).to.be.an('array');","    pm.expect(response.data.attributes.hash).to.be.a('string');","    pm.expect(response.data.attributes.last_modified).to.be.a('string');","","    pm.expect(response.data.type).to.eql('extractor');","    pm.expect(response.data.id).to.include('Extractor_test');","    pm.expect(response.data.attributes.name).to.include('Extractor_test');","    pm.expect(response.data.attributes.contents.trim()).to.eql(\"print Hello world\\nvar key1 = value1\\npublic var key2 = \\\"value2\\\"\\npublic var key3 = \\\"value3\\\"\");","    pm.expect(response.data.attributes.variables).to.eql([","        {","            \"name\": \"key2\",","            \"value\": \"value2\",","            \"type\": \"normal\",","            \"line\": 3,","            \"comment\": \"\"","        },","        {","            \"name\": \"key3\",","            \"value\": \"value3\",","            \"type\": \"normal\",","            \"line\": 4,","            \"comment\": \"\"","        }","    ]);","});"],"type":"text/javascript"}}],"id":"9694c610-4625-4b96-88aa-f005fa7530b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"extractor\",\r\n        \"id\": \"{{extractor_name}}\",\r\n        \"attributes\": {\r\n            \"variables\": [\r\n                {\r\n                    \"name\": \"key2\",\r\n                    \"value\": \"value2\",\r\n                    \"type\": \"normal\"\r\n                },\r\n                {\r\n                    \"name\": \"key3\",\r\n                    \"value\": \"value3\",\r\n                    \"type\": \"normal\"\r\n                }\r\n            ]\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/extractors/:extractor_id","urlObject":{"path":["v2","extractors",":extractor_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{extractor_name}}","key":"extractor_id"}]}},"response":[{"id":"597ad6fe-fe08-4a6e-973a-beae8812285f","name":"Update an extractor (variables)","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"extractor\",\r\n        \"id\": \"{{extractor_name}}\",\r\n        \"attributes\": {\r\n            \"variables\": [\r\n                {\r\n                    \"name\": \"key2\",\r\n                    \"value\": \"value2\",\r\n                    \"type\": \"normal\"\r\n                },\r\n                {\r\n                    \"name\": \"key3\",\r\n                    \"value\": \"value3\",\r\n                    \"type\": \"normal\"\r\n                }\r\n            ]\r\n        }\r\n    }\r\n}"},"url":{"raw":"{{base_url}}/v2/extractors/:extractor_id","host":["{{base_url}}"],"path":["v2","extractors",":extractor_id"],"variable":[{"key":"extractor_id","value":"{{extractor_name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 10:01:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xc49db6ed845208ac450d61f88c45f401"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xc49db6ed845208ac450d61f88c45f401"},{"key":"ETag","value":"\"04e647ec09c95e9c9342799367a7325a\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-csQs37QP3NAtuSPFmjfkIqtAv2l1FPCl';style-src 'self' 'nonce-csQs37QP3NAtuSPFmjfkIqtAv2l1FPCl';font-src 'self' data:"},{"key":"Request-Id","value":"322a684a-2c80-4b2d-b9ff-67e38dffd0d4"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"extractor\",\n        \"id\": \"MyExtractor\",\n        \"attributes\": {\n            \"name\": \"MyExtractor\",\n            \"contents\": \"print Hello\\nvar key1 = value1\\npublic var key2 = \\\"value2\\\"\\npublic var key3 = \\\"value3\\\"\",\n            \"variables\": [\n                {\n                    \"name\": \"key2\",\n                    \"value\": \"value2\",\n                    \"type\": \"normal\",\n                    \"line\": 3,\n                    \"comment\": \"\"\n                },\n                {\n                    \"name\": \"key3\",\n                    \"value\": \"value3\",\n                    \"type\": \"normal\",\n                    \"line\": 4,\n                    \"comment\": \"\"\n                }\n            ],\n            \"updated_at\": \"2024-12-03T10:01:08Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/extractors/MyExtractor\"\n        }\n    }\n}"}],"_postman_id":"9694c610-4625-4b96-88aa-f005fa7530b9"},{"name":"Run an extractor","event":[{"listen":"test","script":{"id":"73a21ce7-86f1-4d7e-900c-617c649c4234","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response meta contains output\", function () {","    pm.expect(response.meta).to.be.an('array');","});","","pm.test(\"Response contains hello world\", function () {","    pm.expect(response.meta[0]).to.contains('Hello world');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.type).to.be.a('string');","    pm.expect(response.data.id).to.be.a('string');","    pm.expect(response.data.attributes.name).to.be.a('string');","    pm.expect(response.data.attributes.contents).to.be.a('string');","    pm.expect(response.data.attributes.variables).to.be.a('array');","    pm.expect(response.data.attributes.hash).to.be.a('string');","    pm.expect(response.data.attributes.last_modified).to.be.a('string');","","    pm.expect(response.data.type).to.eql('extractor');","    pm.expect(response.data.id).to.include('Extractor_test');","    pm.expect(response.data.attributes.name).to.include('Extractor_test');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"35bb3faa-6d87-42f9-9e76-4bf4c703ac81","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireWorkflow)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","});"],"type":"text/javascript"}}],"id":"8717d460-5cf8-4091-9716-99ad2084f3be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/extractors/:extractor_id/run?arguments","urlObject":{"path":["v2","extractors",":extractor_id","run"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>Environment ID (optional)</p>\n","type":"text/plain"},"key":"environment_id","value":""},{"key":"arguments","value":null}],"variable":[{"type":"any","value":"{{extractor_name}}","key":"extractor_id"}]}},"response":[{"id":"088e3379-b033-4817-8447-a18fbd91458b","name":"Run an extractor","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/extractors/:extractor_id/run?arguments","host":["{{base_url}}"],"path":["v2","extractors",":extractor_id","run"],"query":[{"key":"environment_id","value":"","description":"Environment ID (optional)","disabled":true},{"key":"arguments","value":null}],"variable":[{"key":"extractor_id","value":"{{extractor_name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 10:01:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xbf2f098a9f66c6eb7d5b7222b8bd1622"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xbf2f098a9f66c6eb7d5b7222b8bd1622"},{"key":"ETag","value":"\"19f3b471e47ce1140e5a7ff0701268c0\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-EBbA4IXHyP03dWssIoxbDRC0QzsInGss';style-src 'self' 'nonce-EBbA4IXHyP03dWssIoxbDRC0QzsInGss';font-src 'self' data:"},{"key":"Request-Id","value":"fd7fc6ce-f5cf-4acb-89a2-9ee4284017c9"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"extractor\",\n        \"id\": \"MyExtractor\",\n        \"attributes\": {\n            \"name\": \"MyExtractor\",\n            \"contents\": \"print Hello\\nvar key1 = value1\\npublic var key2 = \\\"value2\\\"\\npublic var key3 = \\\"value3\\\"\",\n            \"variables\": [\n                {\n                    \"name\": \"key2\",\n                    \"value\": \"value2\",\n                    \"type\": \"normal\",\n                    \"line\": 3,\n                    \"comment\": \"\"\n                },\n                {\n                    \"name\": \"key3\",\n                    \"value\": \"value3\",\n                    \"type\": \"normal\",\n                    \"line\": 4,\n                    \"comment\": \"\"\n                }\n            ],\n            \"updated_at\": \"2024-12-03T10:01:08Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/extractors/MyExtractor\"\n        }\n    },\n    \"meta\": [\n        \"=================================\\r\\nUSE: Unified Scriptable Extractor\\r\\n=================================\\r\\nHello \\r\\n\\r\\nUSE script finished successfully\\r\\n\"\n    ]\n}"}],"_postman_id":"8717d460-5cf8-4091-9716-99ad2084f3be"},{"name":"Delete an extractor","event":[{"listen":"test","script":{"id":"1baa50dc-5538-4fc9-9b43-037b587261d2","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET extractor_name');","pm.environment.unset(\"extractor_name\");","","postman.clearEnvironmentVariable(\"extractor_name\");",""],"type":"text/javascript"}}],"id":"6bbcd641-73e1-4bc7-b01c-cf1ac10ab421","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/extractors/:extractor_id","urlObject":{"path":["v2","extractors",":extractor_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{extractor_name}}","key":"extractor_id"}]}},"response":[{"id":"19dc20fc-44e4-4c9a-9ecf-8cb3666c0fb2","name":"Delete an extractor","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{base_url}}/v2/extractors/:extractor_id","host":["{{base_url}}"],"path":["v2","extractors",":extractor_id"],"variable":[{"key":"extractor_id","value":"{{extractor_name}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 03 Dec 2024 09:41:02 GMT"},{"key":"X-Clockwork-Id","value":"X5c6b79cfc8fc2971d9a977e4f993a0c0"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X5c6b79cfc8fc2971d9a977e4f993a0c0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-yOmZuxMp7g0YzAm9mWBx1uDhuB99BuIv';style-src 'self' 'nonce-yOmZuxMp7g0YzAm9mWBx1uDhuB99BuIv';font-src 'self' data:"},{"key":"Request-Id","value":"0408a3a4-d9b9-41ea-8ad4-df2c4110904f"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6bbcd641-73e1-4bc7-b01c-cf1ac10ab421"}],"id":"d8debe93-80ca-4f36-add8-40628180362d","description":"<p>⚡ Not JSON:API compliant</p>\n<p>Atomic support: ❌</p>\n<p>Extraction is the process by which USE (Unified Scriptable Extractor) retrieves data from external locations. <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#extractor\">Read more.</a></p>\n<h4 id=\"the-extractor-object\">The Extractor Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>🔏 immutible</td>\n<td>Required, unique, max 255 chars.</td>\n</tr>\n<tr>\n<td>contents</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Extractor script</td>\n</tr>\n<tr>\n<td>variables</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>Array of Variable Objects</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"the-variable-object\">The Variable Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>value</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following resources can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>jobs</td>\n<td>hasMany</td>\n<td>job</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0a642fd4-1bf3-46ad-ad32-e69435db5f7a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4c4fd39b-2a07-47cd-bfb0-b9d0144adaec","type":"text/javascript","exec":[""]}}],"_postman_id":"d8debe93-80ca-4f36-add8-40628180362d"},{"name":"/transformers","item":[{"name":"Retrieve a list of transformers","event":[{"listen":"test","script":{"id":"341d29ca-c26d-4fac-98e5-b95ed5702bd6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('array');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2382f323-6b67-47c3-b3e0-b5d65b738e11","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"0e115c50-618f-49f9-bc4d-2ec25bb007f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/transformers","urlObject":{"path":["v2","transformers"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"52e45d3f-aa4c-4c0a-b9ef-ef64db6640dd","name":"Retrieve a list of transformers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/transformers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 11:22:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xb1a821e6b0e888058dfaff7aedbe024e"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xb1a821e6b0e888058dfaff7aedbe024e"},{"key":"ETag","value":"\"fe9e9d1bf275e690125705d437f94ac2\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-PindEiV0tC9H8ZkgHHoRULylywD02ppt';style-src 'self' 'nonce-PindEiV0tC9H8ZkgHHoRULylywD02ppt';font-src 'self' data:"},{"key":"Request-Id","value":"8c499ddf-d405-4985-bf83-831fad0c2a09"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"transformer\",\n            \"id\": \"Transformer_test_918\",\n            \"attributes\": {\n                \"name\": \"Transformer_test_918\",\n                \"contents\": \"script here\",\n                \"updated_at\": \"2025-01-13T11:20:32Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/transformers/Transformer_test_918\"\n            }\n        },\n        {\n            \"type\": \"transformer\",\n            \"id\": \"test\",\n            \"attributes\": {\n                \"name\": \"test\",\n                \"contents\": \"# usage data\\r\\nimport usage from test\\r\\noption services = overwrite\\r\\nfinish\\r\\n\\r\\noption services = overwrite\\r\\n\\r\\nservices {\\r\\n    service_type = automatic\\r\\n    description_col = description\\r\\n    category_col = category\\r\\n    instance_col = UniqueID\\r\\n    usages_col = service_name\\r\\n    rate_col = rate\\r\\n    cogs_col = cogs\\r\\n    interval_col  = interval\\r\\n    model_col = model\\r\\n    unit_label_col = unit\\r\\n    consumption_col = quantity\\r\\n}\\r\\n\",\n                \"updated_at\": \"2024-12-19T13:47:08Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/transformers/test\"\n            }\n        }\n    ]\n}"}],"_postman_id":"0e115c50-618f-49f9-bc4d-2ec25bb007f2"},{"name":"Add a new transformer","event":[{"listen":"test","script":{"id":"095f61cb-1f26-40dc-9d9c-0e922b9ad28f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.name).to.be.a('string');","    pm.expect(response.contents).to.be.a('string');","    pm.expect(response.hash).to.be.a('string');","    pm.expect(response.last_modified).to.be.a('string');","","    pm.expect(response.name).to.include('Transformer_test');","    pm.expect(response.contents.trim()).to.eql('# script here');","});","","pm.environment.set(\"transformer_name\", response.name);","console.log('SET transformer_name: ' + pm.environment.get(\"transformer_name\"));"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"8b49ac2c-6034-4a67-bac0-bf6be4d71685","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript","packages":{}}}],"id":"1b9454ac-46f6-4f30-af55-032263e63d0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n        \"type\":\"transformer\",\r\n        \"attributes\": {\r\n            \"name\": \"Transformer test 715\",\r\n            \"contents\": \"# script here\"\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/transformers","urlObject":{"path":["v2","transformers"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7d6d96c3-4f1d-4698-b2bf-88e893c5cfdb","name":"Add a new transformer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n        \"type\":\"transformer\",\r\n        \"attributes\": {\r\n            \"name\": \"Transformer test 606\",\r\n            \"contents\": \"# script here\"\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/transformers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 11:21:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xe3f114907d4a8ac4e8a6b4dc87e56ae0"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xe3f114907d4a8ac4e8a6b4dc87e56ae0"},{"key":"ETag","value":"\"fc7f6dd41486e8d8f0c42881ca9f5fa1\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-LSxePVDO5yaGhOOlmIo3SXtyfKQn0qpR';style-src 'self' 'nonce-LSxePVDO5yaGhOOlmIo3SXtyfKQn0qpR';font-src 'self' data:"},{"key":"Request-Id","value":"8939c99c-186b-4c0b-9bdf-1083afc1547e"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"transformer\",\n        \"id\": \"Transformer_test_905\",\n        \"attributes\": {\n            \"name\": \"Transformer_test_905\",\n            \"contents\": \"# script here\",\n            \"updated_at\": \"2025-01-13T11:21:04Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/transformers/Transformer_test_905\"\n        }\n    }\n}"}],"_postman_id":"1b9454ac-46f6-4f30-af55-032263e63d0f"},{"name":"Retrieve a transformer","event":[{"listen":"test","script":{"id":"c8a7e41a-64db-4421-9ccd-85b730eb44bf","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.name).to.be.a('string');","    pm.expect(response.contents).to.be.a('string');","    pm.expect(response.hash).to.be.a('string');","    pm.expect(response.last_modified).to.be.a('string');","","    pm.expect(response.name).to.eql(pm.environment.get(\"transformer_name\"));","    pm.expect(response.contents.trim()).to.eql('# script here');","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c86b02fb-2532-45ab-af74-fe31f8c1f090","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"49a45a4f-8ac4-43e1-aa0a-3cfffc507333","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/transformers/:transformer_id","urlObject":{"path":["v2","transformers",":transformer_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{transformer_name}}","key":"transformer_id"}]}},"response":[{"id":"dd0c9d72-a1fe-4172-a622-c556e7816237","name":"Retrieve a transformer","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/transformers/:transformer_id","host":["{{base_url}}"],"path":["v2","transformers",":transformer_id"],"variable":[{"key":"transformer_id","value":"dummy-transformer"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 20 May 2022 13:23:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-s1cwKn42BEWtgJHwBCNzS7uCInoyqphW';style-src 'self' 'nonce-s1cwKn42BEWtgJHwBCNzS7uCInoyqphW';font-src 'self' data:"},{"key":"Request-Id","value":"f073f406-f8ac-4a29-9ab1-009347a9cee9"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"transformer\",\n        \"id\": \"dummy-transformer\",\n        \"attributes\": {\n            \"name\": \"dummy-transformer\",\n            \"contents\": \"import system/extracted/${dataYear}/${dataMonth}/${dataDay}_usage.csv source dummy-data alias dummy-usage\\nfinish\\n\\nservices {\\n  usages_col = service_name\\n  service_type = automatic\\n  description_col = service_name\\n  category_col = category\\n  instance_col = UniqueID\\n  model_col = model\\n  rate_col = rate\\n  cogs_col = cogs\\n  interval_col  = interval\\n  unit_label_col = unit\\n  consumption_col = quantity\\n}\",\n            \"hash\": \"0728ca8e495f9775ec42aa2aa4ba326dedeb5706\",\n            \"last_modified\": \"2022-05-17T16:28:04Z\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/transformers/dummy-transformer\"\n        }\n    }\n}"}],"_postman_id":"49a45a4f-8ac4-43e1-aa0a-3cfffc507333"},{"name":"Update a transformer","event":[{"listen":"test","script":{"id":"52d8f0e0-c0b8-4288-9b1f-5b7b8c612762","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.name).to.be.a('string');","    pm.expect(response.contents).to.be.a('string');","    pm.expect(response.hash).to.be.a('string');","    pm.expect(response.last_modified).to.be.a('string');","","    pm.expect(response.name).to.eql(pm.environment.get(\"transformer_name\"));","    pm.expect(response.contents.trim()).to.eql('# modified script here');","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"cbe8d02e-7ff0-4512-87b7-82d562dda306","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript","packages":{}}}],"id":"b49dfb4f-b738-4de0-a277-beb5a8978980","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n        \"type\":\"transformer\",\r\n        \"id\": \"{{transformer_name}}\",\r\n        \"attributes\": {\r\n            \"contents\": \"my new script\"\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/transformers/:transformer_id","urlObject":{"path":["v2","transformers",":transformer_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{transformer_name}}","key":"transformer_id"}]}},"response":[{"id":"ac2f0bb0-02b6-45de-8eeb-8d562d8b2734","name":"Update a transformer","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n        \"type\":\"transformer\",\r\n        \"id\": \"{{transformer_name}}\",\r\n        \"attributes\": {\r\n            \"contents\": \"my new script\"\r\n        }\r\n    }\r\n}"},"url":{"raw":"{{base_url}}/v2/transformers/:transformer_id","host":["{{base_url}}"],"path":["v2","transformers",":transformer_id"],"variable":[{"key":"transformer_id","value":"{{transformer_name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 11:28:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xdfa74fde92cbd3a399d332887cdbbaf2"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xdfa74fde92cbd3a399d332887cdbbaf2"},{"key":"ETag","value":"\"f10ea2c6cc4fad6038acdf4e0923f1b1\""},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-0VNFncPG8rrEwr7RFVWM46pxYgZBpSBP';style-src 'self' 'nonce-0VNFncPG8rrEwr7RFVWM46pxYgZBpSBP';font-src 'self' data:"},{"key":"Request-Id","value":"74f9cc56-cdde-40c0-b44b-91dd76682558"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"transformer\",\n        \"id\": \"Transformer_test_918\",\n        \"attributes\": {\n            \"name\": \"Transformer_test_918\",\n            \"contents\": \"my new script\",\n            \"updated_at\": \"2025-01-13T11:28:15Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/transformers/Transformer_test_918\"\n        }\n    }\n}"}],"_postman_id":"b49dfb4f-b738-4de0-a277-beb5a8978980"},{"name":"Run a transformer","event":[{"listen":"test","script":{"id":"c720e70b-97bf-4697-bb17-0ced8598549d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","console.log(pm.response);","let response = pm.response.text();","","for (let i of responseBody.split('\\n')) {","    if (i[0] === '{') {","        response = JSON.parse(i);","    }","}","","pm.test(\"Response contains output\", function () {","    pm.expect(response).to.be.an('object');","    pm.expect(response.status).to.be.a('string');","    pm.expect(response.start_time).to.be.a('string');","    pm.expect(response.end_time).to.be.a('string');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2135eb50-4fef-477d-8a2d-4ba06464d2d0","exec":["pm.environment.set(\"date\", \"20170101\");","","const api = eval(pm.globals.get('exivity'))();","api.start()","    .then(api.requireToken)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });"],"type":"text/javascript"}}],"id":"31d6f171-5470-4d7a-bad0-915f6cfc8927","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/transformers/:transformer_id/run?date={{date}}&start_date=&end_date=&limit&break_at&preview=&snapshot_deset&environment_id","urlObject":{"path":["v2","transformers",":transformer_id","run"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Date to run the fransformer for (in <code>YYYY-MM-DD</code> format).</p>\n","type":"text/plain"},"key":"date","value":"{{date}}"},{"description":{"content":"<p>If the transformer should be run for a range of dates, the start date to run the fransformer for (in <code>YYYY-MM-DD</code> format).</p>\n","type":"text/plain"},"key":"start_date","value":""},{"description":{"content":"<p>If the transformer should be run for a range of dates, the end date to run the fransformer for (in <code>YYYY-MM-DD</code> format).</p>\n","type":"text/plain"},"key":"end_date","value":""},{"description":{"content":"<p>Limit the number of records to preview, defaults to <code>10</code>.</p>\n","type":"text/plain"},"key":"limit","value":null},{"description":{"content":"<p>When in preview mode, stop executing the transformer before this line.</p>\n","type":"text/plain"},"key":"break_at","value":null},{"description":{"content":"<p>If set to <code>1</code>, all statements which modify the system will be skipped and the default dataset will be included with the response.</p>\n","type":"text/plain"},"key":"preview","value":""},{"description":{"content":"<p>With preview only  - name of dset to preview. If not selected, default dset will be used.</p>\n","type":"text/plain"},"key":"snapshot_deset","value":null},{"description":{"content":"<p>Environment ID (optional)</p>\n","type":"text/plain"},"key":"environment_id","value":null}],"variable":[{"type":"any","value":"{{transformer_name}}","key":"transformer_id"}]}},"response":[],"_postman_id":"31d6f171-5470-4d7a-bad0-915f6cfc8927"},{"name":"Delete a transformer","event":[{"listen":"test","script":{"id":"4efbebe9-89e9-4852-9444-1c8a1f1e3b6f","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET transformer_name');","pm.environment.unset(\"transformer_name\");"],"type":"text/javascript"}}],"id":"589d3065-09b3-4d1c-a3f2-5a8db5cb3fbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/transformers/:transformer_id","urlObject":{"path":["v2","transformers",":transformer_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{transformer_name}}","key":"transformer_id"}]}},"response":[{"id":"afd4a63b-8db7-4336-9d72-8eb00dfda2af","name":"Delete a transformer","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{base_url}}/v2/transformers/:transformer_id","host":["{{base_url}}"],"path":["v2","transformers",":transformer_id"],"variable":[{"key":"transformer_id","value":"{{transformer_name}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.4.1"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 13 Jan 2025 11:28:52 GMT"},{"key":"X-Clockwork-Id","value":"X21b7fd42b5e7765d7f2ba43a6458ef5b"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X21b7fd42b5e7765d7f2ba43a6458ef5b"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-z5GU2HPoS8UQkWj3qAZQuSfR6stvAmsE';style-src 'self' 'nonce-z5GU2HPoS8UQkWj3qAZQuSfR6stvAmsE';font-src 'self' data:"},{"key":"Request-Id","value":"f14c77fb-a188-4551-b8f9-2e64de61d28e"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"589d3065-09b3-4d1c-a3f2-5a8db5cb3fbc"}],"id":"452fa4be-69a5-4e31-a78b-6684ef8faa47","description":"<p>⚡ Not JSON:API compliant</p>\n<p>Atomic support: ❌</p>\n<p>Transformers are user-definable scripts (termed tasks) used to produce one or more Reporting Database Files (RDFs) from one or more input Dataset files in CSV format. These RDFs are later used by the reporting engine to generate results. <a href=\"https://docs.exivity.com/data-pipelines/transform\">Read more.</a></p>\n<h4 id=\"the-transformer-object\">The Transformer Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>🔏 immutible</td>\n<td>Required, unique, max 255 chars.</td>\n</tr>\n<tr>\n<td>contents</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Transformer script</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following resources can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>jobs</td>\n<td>hasMany</td>\n<td>job</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f2841411-598b-4ad7-b8b9-7d6bef475d36","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c53ccabf-55ba-4ddd-bf3d-7ad55fd40748","type":"text/javascript","exec":[""]}}],"_postman_id":"452fa4be-69a5-4e31-a78b-6684ef8faa47"},{"name":"/datasets","item":[{"name":"Retrieve a list of datasets","event":[{"listen":"test","script":{"id":"722c86c2-a613-4a60-be2b-9b8eead81469","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});","","pm.environment.set(\"dset_id\", response.data[0].id);","console.log('SET dset_id: ' + pm.environment.get(\"dset_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c3619c58-adc7-42fe-9303-19b26b733864","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"2526119b-3240-4ee1-bd20-37fdea6dd023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/datasets?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","datasets"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>services</code>, <code>reports</code>, <code>metadatadefinition</code>, <code>datasetdays</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[],"_postman_id":"2526119b-3240-4ee1-bd20-37fdea6dd023"},{"name":"Retrieve a dataset","event":[{"listen":"test","script":{"id":"9668e89c-5270-4c9e-8f9d-3190e70e5553","exec":["console.log('USE dset_id(name): ' + pm.environment.get(\"dset_id\"));","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('dset');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"dset_id\").toString());","});","","// Attributes","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.earliest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.latest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.ref_count).to.be.a('number');","    pm.expect(response.data.attributes.rdf_detail).to.be.an('array');","    pm.expect(response.data.attributes.columns).to.be.an('array').that.is.not.empty;","});","","pm.test(\"Attribute 'columns' is not empty\", function () {","    pm.expect(response.data.attributes.columns).to.be.an('array').that.is.not.empty;","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"bbcb77c9-6d64-4094-8601-3bdc7c1f00b4","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"f5430f69-d402-4db9-8459-69ef92da7fb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/datasets/:dset_id?include=","urlObject":{"path":["v2","datasets",":dset_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>services</code>, <code>reports</code>, <code>metadatadefinition</code>, <code>datasetdays</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"type":"any","value":"{{dset_id}}","key":"dset_id"}]}},"response":[{"id":"798b3018-6e61-4717-93ff-d7517422e068","name":"Retrieve a dataset","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/datasets/:dset_id","host":["{{base_url}}"],"path":["v2","datasets",":dset_id"],"variable":[{"key":"dset_id","value":"{{dset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Jul 2022 12:41:57 GMT"},{"key":"Date","value":"Tue, 05 Jul 2022 12:41:57 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X9394191403ecac13d1186b9461026c8a"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-my0FgMufngV675bNY9jM663RD6ehm17m';style-src 'self' 'nonce-my0FgMufngV675bNY9jM663RD6ehm17m';font-src 'self' data:"},{"key":"Request-Id","value":"b34d3373-8f64-46b3-adc3-d3af6f3917be"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"dataset\",\n        \"id\": \"demo.usage\",\n        \"attributes\": {\n            \"columns\": [\n                \"customer_id\",\n                \"Subscription GUID\",\n                \"usageStartTime\",\n                \"usageEndTime\",\n                \"meter_id\",\n                \"resource_name\",\n                \"resource_category\",\n                \"resource_subcategory\",\n                \"quantity\",\n                \"unit\",\n                \"resourceUri\",\n                \"location\",\n                \"partNumber\",\n                \"orderNumber\",\n                \"objectType\",\n                \"region\",\n                \"interval\",\n                \"service_name\",\n                \"Resource Group\",\n                \"Resource\",\n                \"Cloud Provider\",\n                \"tenantId\",\n                \"Customer\",\n                \"Domain\",\n                \"Type\",\n                \"Relationship\",\n                \"Omschrijving\",\n                \"Verkoopprijs\",\n                \"Inkoopprijs\",\n                \"Artikelgroep\",\n                \"friendly_name\",\n                \"creation_date\",\n                \"effective_start_date\",\n                \"commitment_end_date\",\n                \"status\",\n                \"Reseller\"\n            ]\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/datasets/demo.usage\"\n        },\n        \"relationships\": {\n            \"metadatadefinition\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/metadatadefinition\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/metadatadefinition\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/services\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/services\"\n                }\n            },\n            \"reports\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/reports\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/reports\"\n                }\n            },\n            \"datasetdays\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/datasetdays\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/datasetdays\"\n                }\n            }\n        }\n    }\n}"},{"id":"bea557d3-9024-4b7d-bc24-00854e94ff3b","name":"Retrieve a dataset with datasetdays","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/datasets/:dset_id?include=datasetdays","host":["{{base_url}}"],"path":["v2","datasets",":dset_id"],"query":[{"key":"include","value":"datasetdays","description":"Include additional related resources. Possible values: `services`, `reports`, `metadatadefinition`, `datasetdays`.","type":"text"}],"variable":[{"key":"dset_id","value":"{{dset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Jul 2022 12:43:14 GMT"},{"key":"Date","value":"Tue, 05 Jul 2022 12:43:14 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X0ce323468a96d41826192fe8837d164d"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-iNjrTLwYJFYPqYuWWGgJYA8jHsV4v2WK';style-src 'self' 'nonce-iNjrTLwYJFYPqYuWWGgJYA8jHsV4v2WK';font-src 'self' data:"},{"key":"Request-Id","value":"d9c21156-978f-4d7e-9724-a3e63250cf65"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"dataset\",\n        \"id\": \"demo.usage\",\n        \"attributes\": {\n            \"columns\": [\n                \"customer_id\",\n                \"Subscription GUID\",\n                \"usageStartTime\",\n                \"usageEndTime\",\n                \"meter_id\",\n                \"resource_name\",\n                \"resource_category\",\n                \"resource_subcategory\",\n                \"quantity\",\n                \"unit\",\n                \"resourceUri\",\n                \"location\",\n                \"partNumber\",\n                \"orderNumber\",\n                \"objectType\",\n                \"region\",\n                \"interval\",\n                \"service_name\",\n                \"Resource Group\",\n                \"Resource\",\n                \"Cloud Provider\",\n                \"tenantId\",\n                \"Customer\",\n                \"Domain\",\n                \"Type\",\n                \"Relationship\",\n                \"Omschrijving\",\n                \"Verkoopprijs\",\n                \"Inkoopprijs\",\n                \"Artikelgroep\",\n                \"friendly_name\",\n                \"creation_date\",\n                \"effective_start_date\",\n                \"commitment_end_date\",\n                \"status\",\n                \"Reseller\"\n            ]\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/datasets/demo.usage\"\n        },\n        \"relationships\": {\n            \"datasetdays\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/datasetdays\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/datasetdays\"\n                },\n                \"data\": [\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220501\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220502\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220503\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220504\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220505\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220506\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220507\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220508\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220509\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220510\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220511\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220512\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220513\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220514\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220515\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220516\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220517\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220518\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220519\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220520\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220521\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220522\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220523\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220524\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220525\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220526\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220527\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220528\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220529\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220530\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220531\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220601\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220602\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220603\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220604\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220605\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220606\"\n                    },\n                    {\n                        \"type\": \"datasetday\",\n                        \"id\": \"demo.usage-20220607\"\n                    }\n                ]\n            },\n            \"metadatadefinition\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/metadatadefinition\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/metadatadefinition\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/services\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/services\"\n                }\n            },\n            \"reports\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/datasets/demo.usage/relationships/reports\",\n                    \"related\": \"http://localhost:8012/v2/datasets/demo.usage/reports\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220501\",\n            \"attributes\": {\n                \"date\": \"2022-05-01\",\n                \"created_at\": \"2022-06-07T09:53:14Z\",\n                \"updated_at\": \"2022-06-07T09:53:14Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220501\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220501/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220501/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220502\",\n            \"attributes\": {\n                \"date\": \"2022-05-02\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220502\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220502/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220502/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220503\",\n            \"attributes\": {\n                \"date\": \"2022-05-03\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220503\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220503/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220503/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220504\",\n            \"attributes\": {\n                \"date\": \"2022-05-04\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220504\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220504/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220504/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220505\",\n            \"attributes\": {\n                \"date\": \"2022-05-05\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220505\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220505/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220505/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220506\",\n            \"attributes\": {\n                \"date\": \"2022-05-06\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220506\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220506/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220506/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220507\",\n            \"attributes\": {\n                \"date\": \"2022-05-07\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220507\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220507/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220507/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220508\",\n            \"attributes\": {\n                \"date\": \"2022-05-08\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220508\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220508/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220508/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220509\",\n            \"attributes\": {\n                \"date\": \"2022-05-09\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220509\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220509/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220509/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220510\",\n            \"attributes\": {\n                \"date\": \"2022-05-10\",\n                \"created_at\": \"2022-06-07T09:53:15Z\",\n                \"updated_at\": \"2022-06-07T09:53:15Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220510\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220510/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220510/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220511\",\n            \"attributes\": {\n                \"date\": \"2022-05-11\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220511\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220511/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220511/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220512\",\n            \"attributes\": {\n                \"date\": \"2022-05-12\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220512\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220512/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220512/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220513\",\n            \"attributes\": {\n                \"date\": \"2022-05-13\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220513\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220513/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220513/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220514\",\n            \"attributes\": {\n                \"date\": \"2022-05-14\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220514\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220514/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220514/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220515\",\n            \"attributes\": {\n                \"date\": \"2022-05-15\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220515\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220515/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220515/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220516\",\n            \"attributes\": {\n                \"date\": \"2022-05-16\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220516\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220516/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220516/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220517\",\n            \"attributes\": {\n                \"date\": \"2022-05-17\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220517\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220517/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220517/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220518\",\n            \"attributes\": {\n                \"date\": \"2022-05-18\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220518\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220518/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220518/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220519\",\n            \"attributes\": {\n                \"date\": \"2022-05-19\",\n                \"created_at\": \"2022-06-07T09:53:16Z\",\n                \"updated_at\": \"2022-06-07T09:53:16Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220519\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220519/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220519/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220520\",\n            \"attributes\": {\n                \"date\": \"2022-05-20\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220520\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220520/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220520/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220521\",\n            \"attributes\": {\n                \"date\": \"2022-05-21\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220521\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220521/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220521/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220522\",\n            \"attributes\": {\n                \"date\": \"2022-05-22\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220522\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220522/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220522/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220523\",\n            \"attributes\": {\n                \"date\": \"2022-05-23\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220523\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220523/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220523/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220524\",\n            \"attributes\": {\n                \"date\": \"2022-05-24\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220524\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220524/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220524/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220525\",\n            \"attributes\": {\n                \"date\": \"2022-05-25\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220525\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220525/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220525/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220526\",\n            \"attributes\": {\n                \"date\": \"2022-05-26\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220526\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220526/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220526/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220527\",\n            \"attributes\": {\n                \"date\": \"2022-05-27\",\n                \"created_at\": \"2022-06-07T09:53:17Z\",\n                \"updated_at\": \"2022-06-07T09:53:17Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220527\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220527/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220527/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220528\",\n            \"attributes\": {\n                \"date\": \"2022-05-28\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220528\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220528/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220528/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220529\",\n            \"attributes\": {\n                \"date\": \"2022-05-29\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220529\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220529/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220529/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220530\",\n            \"attributes\": {\n                \"date\": \"2022-05-30\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220530\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220530/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220530/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220531\",\n            \"attributes\": {\n                \"date\": \"2022-05-31\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220531\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220531/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220531/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220601\",\n            \"attributes\": {\n                \"date\": \"2022-06-01\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220601\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220601/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220601/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220602\",\n            \"attributes\": {\n                \"date\": \"2022-06-02\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220602\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220602/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220602/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220603\",\n            \"attributes\": {\n                \"date\": \"2022-06-03\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220603\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220603/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220603/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220604\",\n            \"attributes\": {\n                \"date\": \"2022-06-04\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220604\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220604/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220604/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220605\",\n            \"attributes\": {\n                \"date\": \"2022-06-05\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220605\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220605/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220605/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220606\",\n            \"attributes\": {\n                \"date\": \"2022-06-06\",\n                \"created_at\": \"2022-06-07T09:53:18Z\",\n                \"updated_at\": \"2022-06-07T09:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220606\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220606/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220606/dataset\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"datasetday\",\n            \"id\": \"demo.usage-20220607\",\n            \"attributes\": {\n                \"date\": \"2022-06-07\",\n                \"created_at\": \"2022-06-07T09:53:19Z\",\n                \"updated_at\": \"2022-06-07T09:53:19Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220607\"\n            },\n            \"relationships\": {\n                \"dataset\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220607/relationships/dataset\",\n                        \"related\": \"http://localhost:8012/v2/datasetdays/demo.usage-20220607/dataset\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"f5430f69-d402-4db9-8459-69ef92da7fb6"},{"name":"Update a dataset","event":[{"listen":"test","script":{"id":"f5d0eb7a-ca46-4d5d-88e3-9a78feb28e6d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('dset');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"dset_id\").toString());","});","","// Attributes","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.earliest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.latest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.ref_count).to.be.a('number');","    pm.expect(response.data.attributes.rdf_detail).to.be.an('array');","    pm.expect(response.data.attributes.columns).to.be.an('array').that.is.not.empty;","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9463774b-9f4d-430e-a37a-210309fb34a1","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireMetadataDefinition)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"b5335faf-007f-4ca1-a3f0-77aa99ec96ca","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"dataset\",\r\n        \"id\": \"{{dset_id}}\",\r\n        \"relationships\": {\r\n            \"metadatadefinition\": {\r\n                \"data\": {\r\n                    \"type\": \"metadatadefinition\",\r\n                    \"id\": \"{{metadatadefinition_id}}\"\r\n                }\r\n            }\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/datasets/:dset_id","urlObject":{"path":["v2","datasets",":dset_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{dset_id}}","key":"dset_id"}]}},"response":[],"_postman_id":"b5335faf-007f-4ca1-a3f0-77aa99ec96ca"},{"name":"Delete a dataset","event":[{"listen":"prerequest","script":{"id":"050ba85e-ba59-4ef6-9761-ee856e684e4c","exec":["// Prevent actually deleting all of the data","pm.environment.set(\"start\", \"2017-08-25\");","pm.environment.set(\"end\", \"2017-08-25\");"],"type":"text/javascript"}},{"listen":"test","script":{"id":"81a9ee4d-71ef-4019-bb10-b174ce5e3c2b","exec":["// This test doesn't delete the whole dset, just data between given dates.","console.log('USE dset_id(name): ' + pm.environment.get(\"dset_id\"));","console.log('USE start: ' + pm.environment.get(\"start\"));","console.log('USE end: ' + pm.environment.get(\"end\"));","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('dset');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"dset_id\").toString());","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.earliest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.latest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.ref_count).to.be.a('number');","    pm.expect(response.data.attributes.rdf_detail).to.be.an('array');","    pm.expect(response.data.attributes.rdf_detail).to.be.of.length(2);","    pm.expect(response.data.attributes.columns).to.be.an('array');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"122a25d0-643b-473a-a926-4423964f38b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/datasets/:dset_id?start={{start}}&end={{end}}","urlObject":{"path":["v2","datasets",":dset_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The start of the date range (inclusive) you want to delete from the dataset. If not specified, use the first date of the dataset.</p>\n","type":"text/plain"},"key":"start","value":"{{start}}"},{"description":{"content":"<p>The end of the date range (inclusive) you want to delete from the dataset. If not specified, use the last date of the dataset.</p>\n","type":"text/plain"},"key":"end","value":"{{end}}"}],"variable":[{"type":"any","value":"{{dset_id}}","key":"dset_id"}]}},"response":[],"_postman_id":"122a25d0-643b-473a-a926-4423964f38b8"}],"id":"a43da502-2623-4f89-8d8b-46b15334acf6","description":"<p>Atomic support: ✔️</p>\n<p>A Dataset is the data once it has been imported by a Transcript task. A Dataset resides in RAM during the Transform phase and, if referenced by a finish statement, is then stored in a database file for long-term use. <a href=\"https://docs.exivity.com/advanced/digging-deeper/dataset-lifecycle#dsets\">Read more here</a> and <a href=\"https://docs.exivity.com/data-pipelines/datasets\">here</a>.</p>\n<p>Many users will want to include datasetdays, as this contains the information previously held in <code>rdf_detail</code> which has been promoted to actual resource with relationship to dataset.</p>\n<h4 id=\"the-dataset-object\">The Dataset Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>columns</td>\n<td><em>array</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following resources can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>metadatadefinition</td>\n<td>hasOne</td>\n<td>metadatadefinition</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>services</td>\n<td>hasMany</td>\n<td>service</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>reportdefinitions</td>\n<td>hasMany</td>\n<td>reportdefinition</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>datasetdays</td>\n<td>hasMany</td>\n<td>datasetday</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"9bb71052-e660-4456-9cfe-ad2f43a22bc4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c777cd51-30c4-4b96-ae29-f3ebddb0a864","type":"text/javascript","exec":[""]}}],"_postman_id":"a43da502-2623-4f89-8d8b-46b15334acf6"},{"name":"/datasetdays","item":[{"name":"Retrieve a list of datasetdayss","event":[{"listen":"test","script":{"id":"722c86c2-a613-4a60-be2b-9b8eead81469","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});","","pm.environment.set(\"dset_id\", response.data[0].id);","console.log('SET dset_id: ' + pm.environment.get(\"dset_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c3619c58-adc7-42fe-9303-19b26b733864","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"b9123b20-1680-4dd2-a68f-f80081643f85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/datasetdays?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","datasetdays"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: dataset`.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[],"_postman_id":"b9123b20-1680-4dd2-a68f-f80081643f85"},{"name":"Retrieve a datasetday","event":[{"listen":"test","script":{"id":"9668e89c-5270-4c9e-8f9d-3190e70e5553","exec":["console.log('USE dset_id(name): ' + pm.environment.get(\"dset_id\"));","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('dset');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"dset_id\").toString());","});","","// Attributes","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.earliest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.latest_rdf).to.be.a('string');","    pm.expect(response.data.attributes.ref_count).to.be.a('number');","    pm.expect(response.data.attributes.rdf_detail).to.be.an('array');","    pm.expect(response.data.attributes.columns).to.be.an('array').that.is.not.empty;","});","","pm.test(\"Attribute 'columns' is not empty\", function () {","    pm.expect(response.data.attributes.columns).to.be.an('array').that.is.not.empty;","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"bbcb77c9-6d64-4094-8601-3bdc7c1f00b4","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"6b6b8666-5e37-4fc3-85c9-305af990d291","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/datasetdayss/:datasetday_id","urlObject":{"path":["v2","datasetdayss",":datasetday_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{datasetday_id}}","key":"datasetday_id"}]}},"response":[],"_postman_id":"6b6b8666-5e37-4fc3-85c9-305af990d291"}],"id":"d3f10f62-852a-4a64-86b0-bec95106ea10","description":"<p>Datasetdays is a read-only resource. Datasetdays are the objects that contain information on the days on which there is usage data within a specific dataset.</p>\n<h4 id=\"the-datasetday-object\">The Datasetday Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>date</td>\n<td><em>date</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>created_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following resources can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dataset</td>\n<td>hasOne</td>\n<td>dataset</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d3f10f62-852a-4a64-86b0-bec95106ea10"},{"name":"/files","item":[{"name":"Upload a file","event":[{"listen":"test","script":{"id":"8e4a9367-e973-44d6-8a17-62d71c4602bc","exec":["// Only test Unprocessable Entity for now, as we're not actually uploading a file","pm.test(\"Status code is 422\", function () {","    pm.response.to.have.status(422);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains error\", function () {","    pm.expect(response.errors).to.be.an('array');","    pm.expect(response.errors[0]).to.be.an('object');","    pm.expect(response.errors[0].detail).to.be.a('string');","    pm.expect(response.errors[0].detail).to.eql('The file field is required.');","});"],"type":"text/javascript"}}],"id":"b1371ca7-7a8a-4794-bbfd-f5edf60fed86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"file","description":"<p>File to be uploaded</p>\n","type":"text","value":""},{"key":"group","value":"","description":"<p>Optional parameter to specify group (default=generic)</p>\n","type":"text"},{"key":"date","value":"","description":"<p>Optional parameter to specify date in YYYY-MM-DD format (default=current date)</p>\n","type":"text"},{"key":"sequence","value":"","description":"<p>Optional parameter to specify sequence (default=1 or auto incrementing if current sequence is already in use)</p>\n","type":"text"}]},"url":"{{base_url}}/v2/files","description":"<p>Only the following file types are accepted:</p>\n<ul>\n<li>csv</li>\n<li>txt</li>\n<li>json</li>\n<li>xml</li>\n</ul>\n<p>Uploaded files are stored as <code>%EXIVITY_HOME_PATH%/import/[group]/[yyyy]/[mm]/[dd]_uploaded_[sequence].[extension]</code>, where <em>sequence</em> is a 3 characters long numberic string with padded zeros (e.g. <code>001</code> or <code>026</code>).</p>\n<p><em>Note: starting with Exivity v3.0.0, this endpoint will no longer include the <code>/import/</code> prefix in the returned JSON response.</em></p>\n","urlObject":{"path":["v2","files"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9dd9817a-7417-4aec-a757-1e37397925fb","name":"Upload a file","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"file","description":"File to be uploaded","type":"file","src":"/C:/Users/aine/OneDrive/Documents/myTestFile.txt"},{"key":"group","value":"","description":"Optional parameter to specify group (default=generic)","type":"text"},{"key":"date","value":"","description":"Optional parameter to specify date in YYYY-MM-DD format (default=current date)","type":"text"},{"key":"sequence","value":"","description":"Optional parameter to specify sequence (default=1 or auto incrementing if current sequence is already in use)","type":"text"}]},"url":"{{base_url}}/v2/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 07 Jun 2022 14:28:54 GMT"},{"key":"Date","value":"Tue, 07 Jun 2022 14:28:54 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X9b55ccba6993b55b9e2d1a96d95f4f30"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X9b55ccba6993b55b9e2d1a96d95f4f30"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-YOOh4X6kUkBA1PUG4E0S3QCA70OTfUr7';style-src 'self' 'nonce-YOOh4X6kUkBA1PUG4E0S3QCA70OTfUr7';font-src 'self' data:"},{"key":"Request-Id","value":"2e2d7ce0-1cef-4b72-b115-cea5989793ab"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"file\",\n        \"id\": \"/generic/2022/06/07_uploaded_001.txt\",\n        \"attributes\": {\n            \"type\": \"file\",\n            \"name\": \"07_uploaded_001.txt\",\n            \"path\": \"/generic/2022/06/\"\n        }\n    }\n}"}],"_postman_id":"b1371ca7-7a8a-4794-bbfd-f5edf60fed86"},{"name":"Upload a file into a folder","event":[{"listen":"test","script":{"id":"6b8d2471-27ba-4a5e-8026-86e892be27aa","exec":["// Can't upload a file via binary, so should get an error","pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains error\", function () {","    pm.expect(response.errors).to.be.an('array');","});","","pm.test(\"Error has title and detail\", function () {","    pm.expect(response.errors[0].title).to.be.eql('InvalidRequestException');","    pm.expect(response.errors[0].detail).to.be.eql('No content provided');","});",""],"type":"text/javascript"}}],"id":"f2384dac-f93c-47cd-9a8a-5e1fe15e3e27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"file","file":{}},"url":"{{base_url}}/v2/files/a.txt","description":"<p>Only the following file types are accepted:</p>\n<ul>\n<li>csv</li>\n<li>txt</li>\n<li>json</li>\n<li>xml</li>\n</ul>\n<p>Uploaded files are stored as <code>%EXIVITY_HOME_PATH%/import/[path]</code>, where the <code>path</code> is derived from the request URL. Existing files will be overwritten.</p>\n","urlObject":{"path":["v2","files","a.txt"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2384dac-f93c-47cd-9a8a-5e1fe15e3e27"},{"name":"List files in folder","event":[{"listen":"test","script":{"id":"12c9761c-1fb2-469c-8aac-b47c653ec554","exec":["// Only test Unprocessable Entity for now, as we're not actually uploading a file","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"1a6949b4-b090-49bd-90eb-72010f3f5145","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/files/:folder","description":"<p>List the files in a given folder<br />Example:</p>\n<ul>\n<li>/v2/files/generic</li>\n<li>/v2/files/generic/2023</li>\n</ul>\n<p>All files are stored in the <code>%EXIVITY_HOME_PATH%/import</code> folder. So <strong>/v1/file/generic</strong> would return the files from <code>%EXIVITY_HOME_PATH%/import/generic</code>.</p>\n","urlObject":{"path":["v2","files",":folder"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"985d1681-7590-4293-ab9f-b520dfd55482","type":"string","value":"","key":"folder"}]}},"response":[{"id":"5bd4661b-5419-4d8c-9047-73d5b3cb0714","name":"List files in folder","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/files/generic/2022"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 07 Jun 2022 14:30:44 GMT"},{"key":"Date","value":"Tue, 07 Jun 2022 14:30:44 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xc893679703e0046fca4b489b52700b5e"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xc893679703e0046fca4b489b52700b5e"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-rJ0tuZZ5XN5Z4efYkCzAvttmD1rSJZzv';style-src 'self' 'nonce-rJ0tuZZ5XN5Z4efYkCzAvttmD1rSJZzv';font-src 'self' data:"},{"key":"Request-Id","value":"f92d582a-245c-408d-b06b-938ebbcb885b"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"file\",\n            \"id\": \"/generic/2022/06\",\n            \"attributes\": {\n                \"type\": \"folder\",\n                \"name\": \"06\",\n                \"path\": \"/generic/2022/\"\n            },\n            \"relationships\": {\n                \"children\": {\n                    \"data\": [\n                        {\n                            \"type\": \"file\",\n                            \"id\": \"/generic/2022/06/02_uploaded_001.txt\",\n                            \"attributes\": {\n                                \"type\": \"file\",\n                                \"name\": \"02_uploaded_001.txt\",\n                                \"path\": \"/generic/2022/06/\"\n                            }\n                        },\n                        {\n                            \"type\": \"file\",\n                            \"id\": \"/generic/2022/06/07_uploaded_001.txt\",\n                            \"attributes\": {\n                                \"type\": \"file\",\n                                \"name\": \"07_uploaded_001.txt\",\n                                \"path\": \"/generic/2022/06/\"\n                            }\n                        }\n                    ]\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"1a6949b4-b090-49bd-90eb-72010f3f5145"},{"name":"Retrieve file","event":[{"listen":"test","script":{"id":"bb674c67-6929-4a24-81dd-e134124a56c4","exec":["// Only test Unprocessable Entity for now, as we're not actually uploading a file","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// const response = pm.response.json();","","// pm.test(\"Response contains data\", function () {","//     pm.expect(response.data).to.be.an('array');","// });"],"type":"text/javascript"}}],"id":"6630aa3c-c51f-4841-8a4e-53af2330231e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/files/:folder/:filename","urlObject":{"path":["v2","files",":folder",":filename"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"0abce218-8600-4636-aeca-bbed958f4547","type":"string","value":"","key":"folder"},{"id":"5cfee172-7bee-4db1-9cfc-f543f0627f35","type":"string","value":"","key":"filename"}]}},"response":[],"_postman_id":"6630aa3c-c51f-4841-8a4e-53af2330231e"},{"name":"Delete a file","event":[{"listen":"test","script":{"id":"b1658a7d-2f0e-4f6c-95bc-a8b7ca3d9326","exec":["// Since we can't upload a file, it's a bit hard to delete it","// This test tried to delete a non-existant file. We expect a error back.","pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains error\", function () {","    pm.expect(response.errors).to.be.an('array');","});","","pm.test(\"Error has title and detail\", function () {","    pm.expect(response.errors[0].title).to.be.eql('NotFoundException');","    pm.expect(response.errors[0].detail).to.be.eql('File name missing');","});",""],"type":"text/javascript"}}],"id":"6d4b8206-3656-47f9-b523-05c98c6a8f68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/files/:folder/:filename","urlObject":{"path":["v2","files",":folder",":filename"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"86f9b945-d944-4ecd-8a42-a7f2488c4852","type":"string","value":"","key":"folder"},{"id":"719ccd80-c6d4-4e9d-ba72-671d6a508656","type":"string","value":"","key":"filename"}]}},"response":[],"_postman_id":"6d4b8206-3656-47f9-b523-05c98c6a8f68"}],"id":"8f4e1c50-3176-489c-abf3-15679be7d3ea","description":"<p>Atomic support: ❌</p>\n<p>This endpoint lets you work with files in the <a href=\"https://docs.exivity.com/getting%20started/installation/1%20node/directory%20structure/#home-directory\">Exivity home directory</a>. Currently, only uploading files is supported.</p>\n","event":[{"listen":"prerequest","script":{"id":"7d728ab7-5c38-441e-9a19-d12478a7a9da","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"735141de-6722-4b82-aac6-234a8930b42c","type":"text/javascript","exec":[""]}}],"_postman_id":"8f4e1c50-3176-489c-abf3-15679be7d3ea"},{"name":"/metadatadefinition","item":[{"name":"Retrieve a list of metadata definitions","event":[{"listen":"test","script":{"id":"1581d23a-dd95-417f-95a8-1c430064a082","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});",""],"type":"text/javascript"}}],"id":"da33ac59-aae3-47da-8610-f2ad1dc16c76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/metadatadefinitions?page[limit]&page[offset]&sort&filter[name]=&include=","urlObject":{"path":["v2","metadatadefinitions"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[name]","value":""},{"description":{"content":"<p>Include additional related resources. Possible values: <code>metadata</code>, <code>datasets</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"a6d814b5-ca93-47fa-9f55-43939da7dbe9","name":"Retrieve a list of metadata definitions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/metadatadefinitions?page[limit]&page[offset]&sort&filter[name]=&include=","host":["{{base_url}}"],"path":["v2","metadatadefinitions"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[name]","value":"","description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `metadata`, `datasets`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 09:13:52 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-w6eDXtuxt5zbPfOtOJIAHTD9JIN0wEFE';style-src 'self' 'nonce-w6eDXtuxt5zbPfOtOJIAHTD9JIN0wEFE';font-src 'self' data:"},{"key":"Request-Id","value":"ced84266-5d52-4b28-a024-5ee464707a79"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"metadatadefinition\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"Face to face demand-driven methodology\",\n                \"fields\": [\n                    {\n                        \"name\": \"strategy\",\n                        \"type\": \"numeric\"\n                    },\n                    {\n                        \"list\": [\n                            \"small\",\n                            \"medium\",\n                            \"large\"\n                        ],\n                        \"name\": \"open system\",\n                        \"type\": \"list\"\n                    },\n                    {\n                        \"list\": [\n                            \"small\",\n                            \"medium\",\n                            \"large\"\n                        ],\n                        \"name\": \"neural-net\",\n                        \"type\": \"list\"\n                    },\n                    {\n                        \"name\": \"ability\",\n                        \"type\": \"date\"\n                    }\n                ]\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/1\"\n            },\n            \"relationships\": {\n                \"metadata\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/1/relationships/metadata\",\n                        \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/1/metadata\"\n                    }\n                },\n                \"datasets\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/1/relationships/datasets\",\n                        \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/1/datasets\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/metadatadefinitions?page%5Blimit%5D=&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/metadatadefinitions?page%5Blimit%5D=&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/metadatadefinitions?page%5Blimit%5D=&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"da33ac59-aae3-47da-8610-f2ad1dc16c76"},{"name":"Add a new metadata definition","event":[{"listen":"test","script":{"id":"aede4161-4bad-4166-b20b-4a362226f357","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('metadatadefinition');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","\t\t\"name\",","        \"fields\"","\t]);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","","pm.environment.set(\"metadatadefinition_id\", response.data.id);","console.log('SET metadatadefinition_id: ' + pm.environment.get(\"metadatadefinition_id\"));"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"beb1fe88-b1e8-4aa8-b4a6-66315206d6d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"metadatadefinition\",\r\n    \"attributes\": {\r\n      \"name\": \"Comprehensive User Profile\",\r\n      \"fields\": [\r\n        {\r\n          \"name\": \"email\",\r\n          \"field_type\": \"string\",\r\n          \"validate\": \"/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\\\.[a-zA-Z]{2,}$/\"\r\n        },\r\n        {\r\n          \"name\": \"department\",\r\n          \"field_type\": \"list\",\r\n          \"list\": [\"engineering\", \"sales\", \"marketing\", \"finance\", \"operations\"]\r\n        },\r\n        {\r\n          \"name\": \"cost_center\",\r\n          \"field_type\": \"numeric\"\r\n        },\r\n        {\r\n          \"name\": \"start_date\",\r\n          \"field_type\": \"date\"\r\n        },\r\n        {\r\n          \"name\": \"user_groups\",\r\n          \"field_type\": \"string_array\"\r\n        },\r\n        {\r\n          \"name\": \"tags\",\r\n          \"field_type\": \"string_array\",\r\n          \"validate\": \"/^[a-z0-9-]+$/\"\r\n        }\r\n      ]\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/metadatadefinitions","urlObject":{"path":["v2","metadatadefinitions"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7355438b-0f42-45b1-a8ed-9e90afd9d8b3","name":"String / Numeric / Date field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"metadatadefinition\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Test definition\",\r\n\t\t\t\"fields\": [\r\n\t\t\t\t{\r\n\t\t\t\t  \"name\": \"country\",\r\n\t\t\t\t  \"type\": \"string\"\r\n\t\t\t\t},\r\n                {\r\n\t\t\t\t  \"name\": \"exchange rate\",\r\n\t\t\t\t  \"type\": \"numeric\"\r\n\t\t\t\t},\r\n                {\r\n\t\t\t\t  \"name\": \"specific date\",\r\n\t\t\t\t  \"type\": \"date\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/metadatadefinitions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 09:14:20 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/MetadataDefinition/MetadataDefinitions"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-NC60H7XZ8Hi1j89aKnsT5SJ6pbHoEuPT';style-src 'self' 'nonce-NC60H7XZ8Hi1j89aKnsT5SJ6pbHoEuPT';font-src 'self' data:"},{"key":"Request-Id","value":"47e4c101-d9d4-49d4-a63d-f26d7402ebc2"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"metadatadefinition\",\n        \"id\": \"4\",\n        \"attributes\": {\n            \"name\": \"Test definition\",\n            \"fields\": [\n                {\n                    \"name\": \"country\",\n                    \"type\": \"string\"\n                },\n                {\n                    \"name\": \"exchange rate\",\n                    \"type\": \"numeric\"\n\t\t\t\t},\n                {\n                    \"name\": \"specific date\",\n                    \"type\": \"date\"\n\t\t\t\t}\n            ]\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/4\"\n        },\n        \"relationships\": {\n            \"metadata\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/4/relationships/metadata\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/4/metadata\"\n                }\n            },\n            \"datasets\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/4/relationships/datasets\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/4/datasets\"\n                }\n            }\n        }\n    }\n}"},{"id":"6cfc7152-89bc-42c3-a4eb-e69de26ea33e","name":"List field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"metadatadefinition\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Country\",\r\n\t\t\t\"fields\": [\r\n\t\t\t\t{\r\n\t\t\t\t  \"name\": \"countries\",\r\n\t\t\t\t  \"type\": \"list\",\r\n                  \"list\": [\r\n                      \"The Netherlands\",\r\n                      \"The United States of America\",\r\n                      \"The Republic of Ireland\"\r\n                  ]\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/metadatadefinitions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 09:17:45 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/MetadataDefinition/MetadataDefinitions"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-utHMs4uMCRzxibSSQnsXaZ6MDHpPFWzl';style-src 'self' 'nonce-utHMs4uMCRzxibSSQnsXaZ6MDHpPFWzl';font-src 'self' data:"},{"key":"Request-Id","value":"6194c14f-7e6e-4afe-a88c-77024739070e"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"metadatadefinition\",\n        \"id\": \"5\",\n        \"attributes\": {\n            \"name\": \"Country\",\n            \"fields\": [\n                {\n                    \"list\": [\n                        \"The Netherlands\",\n                        \"The United States of America\",\n                        \"The Republic of Ireland\"\n                    ],\n                    \"name\": \"countries\",\n                    \"type\": \"list\"\n                }\n            ]\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/5\"\n        },\n        \"relationships\": {\n            \"metadata\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/5/relationships/metadata\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/5/metadata\"\n                }\n            },\n            \"datasets\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/5/relationships/datasets\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/5/datasets\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"beb1fe88-b1e8-4aa8-b4a6-66315206d6d7"},{"name":"Retrieve a metadata definition","event":[{"listen":"test","script":{"id":"ead220b0-be60-465b-ae1a-0371b811268d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('metadatadefinition');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"metadatadefinition_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","\t\t\"name\",","        \"fields\"","\t]);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"3f0ac924-fff2-4f5b-9584-225adbd34dd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/metadatadefinitions/:metadatadefinition_id/","urlObject":{"path":["v2","metadatadefinitions",":metadatadefinition_id",""],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>Include additional related resources. Possible values: <code>metadata</code>, <code>datasets</code>.</p>\n","type":"text/plain"},"key":"include","value":"datasets"}],"variable":[{"type":"any","value":"{{metadatadefinition_id}}","key":"metadatadefinition_id"}]}},"response":[{"id":"073ed4b8-7943-405a-a3c2-0900547fd713","name":"Retrieve a metadata definition","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/metadatadefinitions/:metadatadefinition_id/?include","host":["{{base_url}}"],"path":["v2","metadatadefinitions",":metadatadefinition_id",""],"query":[{"key":"include","value":null,"description":"Include additional related resources."}],"variable":[{"key":"metadatadefinition_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 09:32:44 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-qKc0e8Q5MnaKf2RWJ4g0VQkj85TX8d6a';style-src 'self' 'nonce-qKc0e8Q5MnaKf2RWJ4g0VQkj85TX8d6a';font-src 'self' data:"},{"key":"Request-Id","value":"2ea880e0-fdf9-4684-a2bf-eb9fea1c8f74"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"metadatadefinition\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"Face to face demand-driven methodology\",\n            \"fields\": [\n                {\n                    \"name\": \"strategy\",\n                    \"type\": \"numeric\"\n                },\n                {\n                    \"list\": [\n                        \"small\",\n                        \"medium\",\n                        \"large\"\n                    ],\n                    \"name\": \"open system\",\n                    \"type\": \"list\"\n                },\n                {\n                    \"list\": [\n                        \"small\",\n                        \"medium\",\n                        \"large\"\n                    ],\n                    \"name\": \"neural-net\",\n                    \"type\": \"list\"\n                },\n                {\n                    \"name\": \"ability\",\n                    \"type\": \"date\"\n                }\n            ]\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/1\"\n        },\n        \"relationships\": {\n            \"metadata\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/1/relationships/metadata\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/1/metadata\"\n                }\n            },\n            \"datasets\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/1/relationships/datasets\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/1/datasets\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"3f0ac924-fff2-4f5b-9584-225adbd34dd9"},{"name":"Update a metadata definition","event":[{"listen":"test","script":{"id":"24434b9e-a63b-4aef-8d13-d74ccb34033f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('metadatadefinition');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"metadatadefinition_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","\t\t\"name\",","        \"fields\"","\t]);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});",""],"type":"text/javascript"}}],"id":"88a224ea-8aa6-49dd-b687-be5a0b8af395","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"metadatadefinition\",\r\n\t\t\"id\": \"{{metadatadefinition_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Modified test definition - c06afbe7-aa8a-47a3-83c0-24bb44a462bd\",\r\n\t\t\t\"fields\": [\r\n\t\t\t\t{\r\n\t\t\t\t  \"name\": \"country\",\r\n\t\t\t\t  \"type\": \"string\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t  \"name\": \"city\",\r\n\t\t\t\t  \"type\": \"string\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/metadatadefinitions/:metadata_definition_id","urlObject":{"path":["v2","metadatadefinitions",":metadata_definition_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"195ce0a2-e428-4ba0-a438-f20d1d5b686e","type":"string","value":"{{metadatadefinition_id}}","key":"metadata_definition_id"}]}},"response":[{"id":"5cefc533-64a6-4ced-8105-fc2d8cfecbae","name":"Update a metadata definition","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"metadatadefinition\",\r\n\t\t\"id\": \"{{metadatadefinition_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Modified test definition - ad910949-ed31-49d4-92fd-f64b5bb5b8b5\",\r\n\t\t\t\"fields\": [\r\n\t\t\t\t{\r\n\t\t\t\t  \"name\": \"country\",\r\n\t\t\t\t  \"type\": \"string\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t  \"name\": \"city\",\r\n\t\t\t\t  \"type\": \"string\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t}\r\n}"},"url":{"raw":"{{base_url}}/v2/metadatadefinitions/:metadata_definition_id","host":["{{base_url}}"],"path":["v2","metadatadefinitions",":metadata_definition_id"],"variable":[{"id":"195ce0a2-e428-4ba0-a438-f20d1d5b686e","key":"metadata_definition_id","value":"{{metadatadefinition_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 09:33:22 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-jNxFMxstbsgLVp0Pgo7G8JRbdOrMKoCi';style-src 'self' 'nonce-jNxFMxstbsgLVp0Pgo7G8JRbdOrMKoCi';font-src 'self' data:"},{"key":"Request-Id","value":"dfc06a54-cdd3-461e-b49e-8cdbe3115dd4"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"metadatadefinition\",\n        \"id\": \"6\",\n        \"attributes\": {\n            \"name\": \"Modified test definition - bbb1faa5-42bd-4737-b593-651125d49ffb\",\n            \"fields\": [\n                {\n                    \"name\": \"country\",\n                    \"type\": \"string\"\n                },\n                {\n                    \"name\": \"city\",\n                    \"type\": \"string\"\n                }\n            ]\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/6\"\n        },\n        \"relationships\": {\n            \"metadata\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/6/relationships/metadata\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/6/metadata\"\n                }\n            },\n            \"datasets\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadatadefinitions/6/relationships/datasets\",\n                    \"related\": \"https://dev.exivity.net/v2/metadatadefinitions/6/datasets\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"88a224ea-8aa6-49dd-b687-be5a0b8af395"},{"name":"Delete a metadata definition","event":[{"listen":"test","script":{"id":"483588e1-de7d-40cd-ac63-989f42e25933","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET metadatadefinition_id');","pm.environment.unset(\"metadatadefinition_id\");"],"type":"text/javascript"}}],"id":"fd1198e4-2834-4608-9d21-28339edc05d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/metadatadefinitions/:metadatadefinition_id","urlObject":{"path":["v2","metadatadefinitions",":metadatadefinition_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{metadatadefinition_id}}","key":"metadatadefinition_id"}]}},"response":[{"id":"eb27cb7e-0045-4544-93cd-c203d4a89c54","name":"Delete a metadata definition","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/metadatadefinitions/:metadatadefinition_id","host":["{{base_url}}"],"path":["v2","metadatadefinitions",":metadatadefinition_id"],"variable":[{"key":"metadatadefinition_id","value":"{{metadatadefinition_id}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 09:33:47 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-QsdHZDbbVsC5PfU8KaENafEASH4AgY89';style-src 'self' 'nonce-QsdHZDbbVsC5PfU8KaENafEASH4AgY89';font-src 'self' data:"},{"key":"Request-Id","value":"eb238819-c7d5-4584-9363-3979c9a7c4aa"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fd1198e4-2834-4608-9d21-28339edc05d6"}],"id":"acb0b0da-803f-4ff7-8e51-e4363940a3e9","description":"<p>Atomic support: ✔️</p>\n<p>Metadata definitions act as schemas that define the structure and validation rules for metadata. They specify what fields are available, their data types (string, numeric, date, array, etc.), and any validation constraints. Once a metadata definition is created, you can attach metadata instances to accounts or services that conform to that definition's structure.</p>\n<p><strong>Use cases:</strong></p>\n<ul>\n<li><p>Store SAML user groups or roles as arrays</p>\n</li>\n<li><p>Track custom attributes like cost centers, departments, or tags</p>\n</li>\n<li><p>Enforce data validation with regex patterns or predefined lists</p>\n</li>\n</ul>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#metadatadefinition\">https://docs.exivity.com/architecture%20concepts/glossary/#metadatadefinition</a></p>\n<h2 id=\"the-metadata-definition-object\">The Metadata Definition Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required, unique</td>\n</tr>\n<tr>\n<td>fields</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>Required, array of <strong>Field Objects</strong> (see below)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Field Object</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required, unique</td>\n</tr>\n<tr>\n<td>type</td>\n<td><em>enum</em> (<code>string</code>, <code>list</code>, <code>numeric</code>, <code>date</code>, <code>string_array</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>list</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>Required if <code>type=list</code></td>\n</tr>\n<tr>\n<td>validate</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Optional regex pattern. For <code>type=string</code>, validates the entire value. For <code>type=array_string</code>, validates each item in the array individually</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Field Types</strong></p>\n<ul>\n<li><p><code>string</code> - Single string value</p>\n</li>\n<li><p><code>list</code> - Single value from a predefined list of options (requires <code>list</code> attribute)</p>\n</li>\n<li><p><code>numeric</code> - Numeric value</p>\n</li>\n<li><p><code>date</code> - Date value</p>\n</li>\n<li><p><code>string_array</code> - Array of strings. Useful for multi-valued attributes like SAML user groups. If a <code>validate</code> regex is provided, it applies to each individual item in the array</p>\n</li>\n</ul>\n<p><strong>Examples</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">// String field with regex validation\n{\n  \"name\": \"email\",\n  \"type\": \"string\",\n  \"validate\": \"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\\\.[a-zA-Z]{2,}$\"\n}\n// String array field without validation\n{\n  \"name\": \"user_groups\",\n  \"type\": \"string_array\"\n}\n// String array field with regex validation (each item must match)\n{\n  \"name\": \"tags\",\n  \"type\": \"string_array\",\n  \"validate\": \"^[a-z0-9-]+$\"\n}\n// List field\n{\n  \"name\": \"department\",\n  \"type\": \"list\",\n  \"list\": [\"engineering\", \"sales\", \"marketing\"]\n}\n\n</code></pre>\n<p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>metadata</td>\n<td>hasMany</td>\n<td>metadata</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>datasets</td>\n<td>hasMany</td>\n<td>datasets</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"the-metadata-definition-object-1\">The Metadata Definition Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>required, string, unique</td>\n</tr>\n<tr>\n<td>fields</td>\n<td>required, array of Field Objects</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"the-field-object\"><strong>The Field Object</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>required, string</td>\n</tr>\n<tr>\n<td>type</td>\n<td>required, in: string, list, numeric, date, string_array</td>\n</tr>\n<tr>\n<td>list</td>\n<td>required if type=list</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"db904cb6-1c6b-478c-a044-66d52355f09b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b3b88f60-89fc-4d80-bf1a-02b2317794ae","type":"text/javascript","exec":[""]}}],"_postman_id":"acb0b0da-803f-4ff7-8e51-e4363940a3e9"},{"name":"/metadata","item":[{"name":"Retrieve a list of metadata","event":[{"listen":"test","script":{"id":"43697a7c-fcaf-441f-baaf-ff5fa9b70969","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"9b5466f2-7651-429d-b38b-bfcd9e67214f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/metadata?page[limit]=1&page[offset]&sort&filter[name]=&include=","urlObject":{"path":["v2","metadata"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":"1"},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[name]","value":""},{"description":{"content":"<p>Include additional related resources. Possible values: <code>definition</code>, <code>accounts</code>, <code>services</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"ef7bef30-2b56-4050-9cc3-1a89d386231a","name":"Retrieve a list of metadata","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/metadata?page[limit]=1&page[offset]&sort&filter[name]=&include=","host":["{{base_url}}"],"path":["v2","metadata"],"query":[{"key":"page[limit]","value":"1","description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[name]","value":"","description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `definition`, `accounts`, `services`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 13:33:48 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-jtrDgp809f2iZWzaBdwGcaNAjdVtCwuT';style-src 'self' 'nonce-jtrDgp809f2iZWzaBdwGcaNAjdVtCwuT';font-src 'self' data:"},{"key":"Request-Id","value":"9e7b3851-f48d-4686-bc0f-3f0a1de47867"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"metadata\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"values\": {\n                    \"ability\": 6432,\n                    \"website\": \"small\",\n                    \"info-mediaries\": \"Divide\",\n                    \"internet solution\": 57869\n                }\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/metadata/1\"\n            },\n            \"relationships\": {\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/metadata/1/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/metadata/1/accounts\"\n                    }\n                },\n                \"definition\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/metadata/1/relationships/definition\",\n                        \"related\": \"https://dev.exivity.net/v2/metadata/1/definition\"\n                    }\n                },\n                \"services\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/metadata/1/relationships/services\",\n                        \"related\": \"https://dev.exivity.net/v2/metadata/1/services\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 18,\n            \"count\": 1,\n            \"per_page\": 1,\n            \"current_page\": 1,\n            \"total_pages\": 18\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/metadata?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/metadata?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"https://dev.exivity.net/v2/metadata?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"https://dev.exivity.net/v2/metadata?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=18\"\n    }\n}"}],"_postman_id":"9b5466f2-7651-429d-b38b-bfcd9e67214f"},{"name":"Add new metadata","event":[{"listen":"test","script":{"id":"1465ab08-b3f5-480d-80b9-fc98c94e3891","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('metadata');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","\t\t\"values\"","\t]);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"metadata_id\", response.data.id);","console.log('SET metadata_id: ' + pm.environment.get(\"metadata_id\"));",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"798d0a07-8955-4ee1-a904-faf2212b9fa7","exec":["// Add metadata definition\r","pm.sendRequest({\r","    url: pm.variables.get(\"base_url\") + '/v1/metadatadefinitions',\r","    method: 'POST',\r","    header: {\r","        'Accept': 'application/vnd.api+json',\r","        'Content-Type': 'application/vnd.api+json',\r","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")\r","    },\r","    body: {\r","        mode: 'raw',\r","        raw: JSON.stringify({\r","        \t\"data\": {\r","        \t\t\"type\": \"metadatadefinition\",\r","        \t\t\"attributes\": {\r","        \t\t\t\"name\": \"Test definition \" + Math.random(999),\r","        \t\t    \"fields\": [\r","        \t\t\t\t{\r","        \t\t\t\t  \"name\": \"country\",\r","        \t\t\t\t  \"type\": \"string\"\r","        \t\t\t\t}\r","    \t\t\t    ]\r","        \t\t}\r","        \t}\r","        })\r","    }\r","}, function (err, res) {\r","    pm.environment.set(\"metadatadefinition_id\", res.json().data.id);\r","    console.log('SET metadatadefinition_id: ' + pm.environment.get(\"metadatadefinition_id\"));\r","})\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f71b4582-6046-4829-b317-956347a8ea78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"metadata\",\r\n    \"attributes\": {\r\n      \"values\": {\r\n        \"email\": \"john.doe@example.com\",\r\n        \"department\": \"engineering\",\r\n        \"cost_center\": 12345,\r\n        \"start_date\": \"2025-01-15\",\r\n        \"user_groups\": [\"admin\", \"developers\", \"qa-team\"],\r\n        \"tags\": [\"senior\", \"backend\", \"team-lead\"]\r\n      }\r\n    },\r\n    \"relationships\": {\r\n      \"definition\": {\r\n        \"data\": {\r\n          \"type\": \"metadatadefinition\",\r\n          \"id\": \"{{metadatadefinition_id}}\"\r\n        }\r\n      }\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/metadata","urlObject":{"path":["v2","metadata"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d0343f6f-7272-4b77-bf27-79ed64471f34","name":"Add new metadata","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"metadata\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"values\": {\r\n\t\t\t\t\"country\": \"The Netherlands\"\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"definition\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"metadatadefinition\",\r\n\t\t\t\t\t\"id\": \"{{metadatadefinition_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/metadata"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 10:35:42 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/Metadata/Metadatas"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-lt27Wl8WUJV9d5W8ORPH0NWNrWHl7fHn';style-src 'self' 'nonce-lt27Wl8WUJV9d5W8ORPH0NWNrWHl7fHn';font-src 'self' data:"},{"key":"Request-Id","value":"54ead895-e132-47bb-8c33-939fef4e182a"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"metadata\",\n        \"id\": \"15\",\n        \"attributes\": {\n            \"values\": {\n                \"country\": \"The Netherlands\"\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/metadata/15\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/15/relationships/accounts\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/15/accounts\"\n                }\n            },\n            \"definition\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/15/relationships/definition\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/15/definition\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/15/relationships/services\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/15/services\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"f71b4582-6046-4829-b317-956347a8ea78"},{"name":"Retrieve metadata","event":[{"listen":"test","script":{"id":"96e39228-5785-4ce7-a821-77e792eaa218","exec":["// pm.test(\"Status code is 200\", function () {","//     pm.response.to.have.status(200);","// });","","// const response = pm.response.json();","","// pm.test(\"Response contains data\", function () {","//     pm.expect(response.data).to.be.an('object');","//     pm.expect(response.data.type).to.eql('metadata');","//     pm.expect(response.data.id).to.eql(pm.environment.get(\"metadata_id\").toString());","//     pm.expect(response.data.attributes).to.be.an('object');","//     pm.expect(response.data.attributes).to.have.keys([","// \t\t\"values\"","// \t]);","// });","","// pm.test(\"Response contains data.links\", function () {","//     pm.expect(response.data.links).to.be.an('object');","// });"],"type":"text/javascript"}}],"id":"48447bde-a003-4aa1-9d39-fd84aa78b4f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/metadata/:metadata_id/?include=","urlObject":{"path":["v2","metadata",":metadata_id",""],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>definition</code>, <code>accounts</code>, <code>services</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"type":"any","value":null,"key":"metadata_id"}]}},"response":[{"id":"2e1d1e94-8f81-4d2c-a277-32b336704429","name":"Retrieve metadata","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/metadata/:metadata_id/?include=","host":["{{base_url}}"],"path":["v2","metadata",":metadata_id",""],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `definition`, `accounts`, `services`."}],"variable":[{"key":"metadata_id","value":"{{metadatadefinition_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 13:36:55 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-N2mGn9DDAntKIweGOKk4od343VLfEOPL';style-src 'self' 'nonce-N2mGn9DDAntKIweGOKk4od343VLfEOPL';font-src 'self' data:"},{"key":"Request-Id","value":"2687e004-3ae6-43a0-b0a9-1315ef00b718"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"metadata\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"values\": {\n                \"website\": \"large\",\n                \"info-mediaries\": \"Personal\",\n                \"internet solution\": 81932\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/metadata/9\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/9/relationships/accounts\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/9/accounts\"\n                }\n            },\n            \"definition\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/9/relationships/definition\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/9/definition\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/9/relationships/services\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/9/services\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"48447bde-a003-4aa1-9d39-fd84aa78b4f5"},{"name":"Update metadata","event":[{"listen":"test","script":{"id":"011ddefc-e4c7-49fa-87c7-80292875bfbc","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('metadata');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"metadata_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","\t\t\"values\"","\t]);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"1cebcb46-8c9c-4047-9b66-65a1f3da2654","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"metadata\",\r\n\t\t\"id\": \"{{metadata_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"values\": {\r\n\t\t\t\t\"country\": \"The Netherlands\",\r\n\t\t\t\t\"city\": \"Zeist\"\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/metadata/:metadata_id","urlObject":{"path":["v2","metadata",":metadata_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"","key":"metadata_id"}]}},"response":[{"id":"efaf59ac-ca14-4805-a1a4-e886f36b4dc3","name":"Update metadata","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"metadata\",\r\n\t\t\"id\": \"1\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"values\": {\r\n\t\t\t\t\"country\": \"The Netherlands\",\r\n\t\t\t\t\"city\": \"Zeist\"\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":{"raw":"{{base_url}}/v2/metadata/:metadata_id","host":["{{base_url}}"],"path":["v2","metadata",":metadata_id"],"variable":[{"key":"metadata_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 13:40:04 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-AKUS7eeYkU2wVGjInzj8g4T7SLaKlRja';style-src 'self' 'nonce-AKUS7eeYkU2wVGjInzj8g4T7SLaKlRja';font-src 'self' data:"},{"key":"Request-Id","value":"6fda2620-c71c-4005-bd69-8d382cc08789"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"metadata\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"values\": {\n                \"city\": \"Zeist\",\n                \"country\": \"The Netherlands\"\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/metadata/1\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/1/relationships/accounts\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/1/accounts\"\n                }\n            },\n            \"definition\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/1/relationships/definition\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/1/definition\"\n                }\n            },\n            \"services\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/metadata/1/relationships/services\",\n                    \"related\": \"https://dev.exivity.net/v2/metadata/1/services\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1cebcb46-8c9c-4047-9b66-65a1f3da2654"},{"name":"Delete metadata","event":[{"listen":"test","script":{"id":"27820080-b37c-4975-be5d-ae0390e04f52","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET metadata_id');","pm.environment.unset(\"metadata_id\");","","// postman.setNextRequest(\"Delete a metadata definition\");"],"type":"text/javascript"}}],"id":"525f27cb-cd63-422c-854c-b932f0c597af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/metadata/:metadata_id","urlObject":{"path":["v2","metadata",":metadata_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"","key":"metadata_id"}]}},"response":[{"id":"aca1c0d2-7291-4220-95ea-324e3fd62d95","name":"Delete metadata","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/metadata/:metadata_id","host":["{{base_url}}"],"path":["v2","metadata",":metadata_id"],"variable":[{"key":"metadata_id","value":"2"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 10 May 2022 13:44:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-5YT6U9H3thRcFixizU2MvAZeqXnFWqOX';style-src 'self' 'nonce-5YT6U9H3thRcFixizU2MvAZeqXnFWqOX';font-src 'self' data:"},{"key":"Request-Id","value":"a44aaa13-0206-4499-bd47-d7d80893c2fd"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"525f27cb-cd63-422c-854c-b932f0c597af"}],"id":"96375d10-e315-4cc8-9b87-40e9bc7a7f33","description":"<p>Atomic support: ✔️</p>\n<p>Metadata stores custom information attached to accounts or services. Each metadata instance conforms to a metadata definition that specifies its structure and validation rules.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#metadata\">https://docs.exivity.com/architecture%20concepts/glossary/#metadata</a></p>\n<h4 id=\"the-metadata-object\">The Metadata Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required, unique identifier for this metadata instance</td>\n</tr>\n<tr>\n<td>values</td>\n<td><em>object</em></td>\n<td>📝 editable</td>\n<td>Required. Key-value pairs where keys match field names from the metadata definition. Values must conform to the field types defined in the associated metadata definition. See <strong>Values Object Structure</strong>.</td>\n</tr>\n<tr>\n<td>metadatadefinition_id</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Required. ID of the metadata definition this metadata conforms to</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Optional. ID of the account this metadata is attached to (mutually exclusive with service_id)</td>\n</tr>\n<tr>\n<td>service_id</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Optional. ID of the service this metadata is attached to (mutually exclusive with account_id)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Values Object Structure</strong></p>\n<p>The <code>values</code> object contains key-value pairs based on the metadata definition's fields:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"values\": {\n    \"email\": \"user@example.com\",           // string field\n    \"department\": \"engineering\",            // list field\n    \"cost_center\": 12345,                   // numeric field\n    \"start_date\": \"2025-01-15\",            // date field\n    \"user_groups\": [\"admin\", \"developers\"]  // string_array field\n  }\n}\n\n</code></pre>\n<p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>definition</td>\n<td>hasOne</td>\n<td>metadatadefinition</td>\n<td>✅</td>\n</tr>\n<tr>\n<td>services</td>\n<td>hasMany</td>\n<td>service</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>accounts</td>\n<td>hasMany</td>\n<td>account</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"bc9fc6a8-e575-46d9-9671-165b449c4d4c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"01105f66-bcb1-4039-85ee-e018923b7a35","type":"text/javascript","exec":[""]}}],"_postman_id":"96375d10-e315-4cc8-9b87-40e9bc7a7f33"},{"name":"/workflows","item":[{"name":"Retrieve a list of workflows","event":[{"listen":"test","script":{"id":"514afef7-9f21-4db5-b7df-58997729829a","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});",""],"type":"text/javascript"}}],"id":"0c09078a-12d1-4404-828f-d0b1997e8118","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflows?page[limit]=&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","workflows"],"host":["{{base_url}}"],"query":[{"key":"page[limit]","value":""},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p><a href=\"#working-with-the-api\">Filter</a> results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>steps</code>, <code>schedules</code>, <code>runs</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"a3a97160-aa07-4313-9a27-cd89a9382978","name":"Retrieve a list of workflows","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflows?page[limit]=&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","workflows"],"query":[{"key":"page[limit]","value":""},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"[Filter](#working-with-the-api) results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `steps`, `schedules`, `runs`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 16 Apr 2024 13:13:56 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xfa859f49b508a8db9d12a14291be0951"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Rco1vELMhi2Buy3bfHPm7m0IkZUjj49v';style-src 'self' 'nonce-Rco1vELMhi2Buy3bfHPm7m0IkZUjj49v';font-src 'self' data:"},{"key":"Request-Id","value":"6bb573e4-59ec-479b-8b75-19a31d526319"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"workflow\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"name\": \"test\",\n                \"description\": \"Workflow 1\",\n                \"created_at\": \"2024-04-16T13:13:47Z\",\n                \"updated_at\": \"2024-04-16T13:13:47Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflows/5\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflows/5/relationships/runs\",\n                        \"related\": \"http://localhost:8012/v2/workflows/5/runs\"\n                    }\n                },\n                \"steps\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflows/5/relationships/steps\",\n                        \"related\": \"http://localhost:8012/v2/workflows/5/steps\"\n                    }\n                },\n                \"schedules\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflows/5/relationships/schedules\",\n                        \"related\": \"http://localhost:8012/v2/workflows/5/schedules\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"name\": \"test\",\n                \"description\": \"Workflow 2\",\n                \"created_at\": \"2024-04-16T13:13:52Z\",\n                \"updated_at\": \"2024-04-16T13:13:52Z\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflows/6\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflows/6/relationships/runs\",\n                        \"related\": \"http://localhost:8012/v2/workflows/6/runs\"\n                    }\n                },\n                \"steps\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflows/6/relationships/steps\",\n                        \"related\": \"http://localhost:8012/v2/workflows/6/steps\"\n                    }\n                },\n                \"schedules\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflows/6/relationships/schedules\",\n                        \"related\": \"http://localhost:8012/v2/workflows/6/schedules\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"http://localhost:8012/v2/workflows?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"http://localhost:8012/v2/workflows?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"http://localhost:8012/v2/workflows?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"},{"id":"8f29765c-99bb-49c3-b595-643d2568ec5d","name":"Retrieve a list of workflows including runs (limit of 2 per workflow)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v1/workflows?page[limit]=&page[offset]&sort&filter[attribute]&include=runs&page[runs][limit]=2","host":["{{base_url}}"],"path":["v1","workflows"],"query":[{"key":"page[limit]","value":""},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"runs","description":"Include additional related resources. Possible values: `steps`, `schedules`, `runs`."},{"key":"page[runs][limit]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 25 Feb 2019 13:24:02 +0000"},{"key":"Date","value":"Mon, 25 Feb 2019 13:24:02 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.1.21"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Access-Control-Allow-Origin","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"workflow\",\n            \"id\": \"24\",\n            \"attributes\": {\n                \"name\": \"Workflow1\",\n                \"description\": \"This is Workflow 1\",\n                \"locked\": false,\n                \"created_at\": \"20124-02-19T09:35:02+00:00\",\n                \"updated_at\": \"2024-02-19T09:35:03+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/24\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/24/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/24/runs\"\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"workflowrun\",\n                            \"id\": \"2\"\n                        },\n                        {\n                            \"type\": \"workflowrun\",\n                            \"id\": \"3\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"25\",\n            \"attributes\": {\n                \"name\": \"Workflow2\",\n                \"description\": \"This is workflow 2\",\n                \"locked\": false,\n                \"created_at\": \"2024-02-19T09:35:59+00:00\",\n                \"updated_at\": \"2024-02-19T13:26:14+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/25\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/25/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/25/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"31\",\n            \"attributes\": {\n                \"name\": \"Workflow3\",\n                \"description\": \"The is workflow 3\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-19T10:27:14+00:00\",\n                \"updated_at\": \"2019-02-19T10:27:15+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/31\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/31/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/31/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"37\",\n            \"attributes\": {\n                \"name\": \"Workflow 4\",\n                \"description\": \"This is workflow 4\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-19T10:31:07+00:00\",\n                \"updated_at\": \"2019-02-19T10:31:08+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/37\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/37/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/37/runs\"\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"workflowrun\",\n                            \"id\": \"7\"\n                        },\n                        {\n                            \"type\": \"workflowrun\",\n                            \"id\": \"10\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"41\",\n            \"attributes\": {\n                \"name\": \"Workflow5\",\n                \"description\": \"This is workflow 5\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-19T12:12:34+00:00\",\n                \"updated_at\": \"2019-02-19T12:12:39+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/41\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/41/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/41/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"45\",\n            \"attributes\": {\n                \"name\": \"Workflow 6\",\n                \"description\": \"This is workflow 6\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-19T12:40:54+00:00\",\n                \"updated_at\": \"2019-02-19T12:41:00+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/45\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/45/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/45/runs\"\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"workflowrun\",\n                            \"id\": \"1\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"46\",\n            \"attributes\": {\n                \"name\": \"Workflow7\",\n                \"description\": \"This is workflow 7\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-19T13:49:51+00:00\",\n                \"updated_at\": \"2019-02-19T13:49:51+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/46\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/46/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/46/runs\"\n                    },\n                    \"data\": [\n                        {\n                            \"type\": \"workflowrun\",\n                            \"id\": \"5\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"47\",\n            \"attributes\": {\n                \"name\": \"Workflow8\",\n                \"description\": \"This is workflow 8\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-19T13:50:14+00:00\",\n                \"updated_at\": \"2019-02-19T13:50:14+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/47\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/47/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/47/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"51\",\n            \"attributes\": {\n                \"name\": \"Workflow 9\",\n                \"description\": \"This is workflow 9\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-20T16:01:21+00:00\",\n                \"updated_at\": \"2019-02-20T16:01:26+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/51\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/51/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/51/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"57\",\n            \"attributes\": {\n                \"name\": \"Workflow10\",\n                \"description\": \"This is workflow 10\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-25T08:23:01+00:00\",\n                \"updated_at\": \"2019-02-25T08:23:06+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/57\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/57/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/57/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"61\",\n            \"attributes\": {\n                \"name\": \"Workflow11\",\n                \"description\": \"This is workflow 11\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-25T08:26:24+00:00\",\n                \"updated_at\": \"2019-02-25T08:26:28+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/61\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/61/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/61/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"type\": \"workflow\",\n            \"id\": \"65\",\n            \"attributes\": {\n                \"name\": \"Workflow12\",\n                \"description\": \"This is workflow12\",\n                \"locked\": false,\n                \"created_at\": \"2019-02-25T12:26:01+00:00\",\n                \"updated_at\": \"2019-02-25T12:26:05+00:00\"\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflows/65\"\n            },\n            \"relationships\": {\n                \"runs\": {\n                    \"links\": {\n                        \"self\": \"https://localhost:8012/v1/workflows/65/relationships/runs\",\n                        \"related\": \"https://localhost:8012/v1/workflows/65/runs\"\n                    },\n                    \"data\": []\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"start\": {\n                    \"date\": \"2019-02-19 14:34:52.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"end\": {\n                    \"date\": \"2019-02-19 14:34:52.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"status\": 3\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflowruns/2\"\n            }\n        },\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"start\": {\n                    \"date\": \"2019-02-19 14:35:00.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"end\": {\n                    \"date\": \"2019-02-19 14:35:00.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"status\": 5\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflowruns/3\"\n            }\n        },\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"start\": {\n                    \"date\": \"2019-02-20 14:33:27.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"end\": {\n                    \"date\": \"2019-02-20 14:33:27.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"status\": 5\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflowruns/7\"\n            }\n        },\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"start\": {\n                    \"date\": \"2019-02-20 14:33:28.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"end\": {\n                    \"date\": \"2019-02-20 14:33:28.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"status\": 5\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflowruns/10\"\n            }\n        },\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"start\": {\n                    \"date\": \"2019-02-19 14:34:52.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"end\": {\n                    \"date\": \"2019-02-19 14:34:52.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"status\": 3\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflowruns/1\"\n            }\n        },\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"start\": {\n                    \"date\": \"2019-02-19 14:35:03.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"end\": {\n                    \"date\": \"2019-02-19 14:35:03.000000\",\n                    \"timezone_type\": 1,\n                    \"timezone\": \"+00:00\"\n                },\n                \"status\": 5\n            },\n            \"links\": {\n                \"self\": \"https://localhost:8012/v1/workflowruns/5\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 12,\n            \"count\": 12,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://localhost:8012/v1/workflows?page%5Blimit%5D=&page%5Bruns%5D%5Blimit%5D=2&sort=&filter%5Battribute%5D=&include=runs&page%5Boffset%5D=1\",\n        \"first\": \"https://localhost:8012/v1/workflows?page%5Blimit%5D=&page%5Bruns%5D%5Blimit%5D=2&sort=&filter%5Battribute%5D=&include=runs&page%5Boffset%5D=1\",\n        \"last\": \"https://localhost:8012/v1/workflows?page%5Blimit%5D=&page%5Bruns%5D%5Blimit%5D=2&sort=&filter%5Battribute%5D=&include=runs&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"0c09078a-12d1-4404-828f-d0b1997e8118"},{"name":"Add a new workflow","event":[{"listen":"test","script":{"id":"73f5b297-f583-4108-ab3d-edae7590d6c0","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflow');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"name\": \"test\",","        \"description\": \"This is test task\"","  });","    pm.expect(response.data.attributes.created_at).to.be.a('string');","    pm.expect(response.data.attributes.updated_at).to.be.a('string');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"workflow_id\", response.data.id);","console.log('SET workflow_id: ' + pm.environment.get(\"workflow_id\"));",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"6783a6a5-e413-4220-a101-0184a17499e6","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript","packages":{}}}],"id":"7c9926f9-b780-4fc4-999b-e4cddd4a47e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflow\",\r\n    \t\"attributes\": {\r\n    \t\t\"name\": \"Workflow  - strategize interactive paradigms\",\r\n            \"description\": \"This is a workflow\"\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflows","urlObject":{"path":["v2","workflows"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"024d431e-6c54-491b-8713-2216713ca1be","name":"Add a new workflow","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflow\",\r\n    \t\"attributes\": {\r\n    \t\t\"name\": \"Workflow  - disintermediate open-source users\",\r\n            \"description\": \"This is a workflow\"\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflows"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Location","value":"http://localhost:8012/v2/Workflow/Workflows"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 16 Apr 2024 13:25:45 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xeb68319ead8c6e563439b3addc65df1e"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-B5kvtXcN4cQseyE7VYdLV0ZWkfJ5rBoM';style-src 'self' 'nonce-B5kvtXcN4cQseyE7VYdLV0ZWkfJ5rBoM';font-src 'self' data:"},{"key":"Request-Id","value":"f7f73d9c-fa80-4f3c-8f29-1edbba3c0834"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflow\",\n        \"id\": \"8\",\n        \"attributes\": {\n            \"name\": \"Workflow  - transform strategic synergies\",\n            \"description\": \"This is a workflow\",\n            \"created_at\": \"2024-04-16T13:25:45Z\",\n            \"updated_at\": \"2024-04-16T13:25:45Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflows/8\"\n        },\n        \"relationships\": {\n            \"runs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/8/relationships/runs\",\n                    \"related\": \"http://localhost:8012/v2/workflows/8/runs\"\n                }\n            },\n            \"steps\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/8/relationships/steps\",\n                    \"related\": \"http://localhost:8012/v2/workflows/8/steps\"\n                }\n            },\n            \"schedules\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/8/relationships/schedules\",\n                    \"related\": \"http://localhost:8012/v2/workflows/8/schedules\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"7c9926f9-b780-4fc4-999b-e4cddd4a47e3"},{"name":"Retrieve a workflow","event":[{"listen":"test","script":{"id":"66d16f94-f829-4618-a68f-8d1055f43d75","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflow');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"workflow_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"name\": \"test\",","        \"description\": \"This is test task\"","  });","    pm.expect(response.data.attributes.created_at).to.be.a('string');","    pm.expect(response.data.attributes.updated_at).to.be.a('string');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"d2acb82f-f258-4bd0-bff8-af2b6893feba","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.requireWorkflow)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"abd74e93-d4b4-41fd-aa58-a0a584300508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflows/:workflowId?include=","urlObject":{"path":["v2","workflows",":workflowId"],"host":["{{base_url}}"],"query":[{"key":"include","value":""}],"variable":[{"id":"a8c7f458-0af4-4a36-b17e-5967d733558d","type":"string","value":"{{workflow_id}}","key":"workflowId"}]}},"response":[{"id":"8ebe529c-d3fe-4811-b4fb-6d5c31fa2f49","name":"Retrieve a workflow","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflows/:workflowId?include=","host":["{{base_url}}"],"path":["v2","workflows",":workflowId"],"query":[{"key":"include","value":""}],"variable":[{"id":"a8c7f458-0af4-4a36-b17e-5967d733558d","key":"workflowId","value":"{{workflow_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 16 Apr 2024 13:26:40 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xcb278b1fdb31a421b05fd5f1a059285d"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-itWgS1RvpqXw3jvuG9W1WtWzFYuNGs83';style-src 'self' 'nonce-itWgS1RvpqXw3jvuG9W1WtWzFYuNGs83';font-src 'self' data:"},{"key":"Request-Id","value":"84bf8604-0503-4195-ade5-2badfabf4a11"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflow\",\n        \"id\": \"8\",\n        \"attributes\": {\n            \"name\": \"Workflow  - transform strategic synergies\",\n            \"description\": \"This is a workflow\",\n            \"created_at\": \"2024-04-16T13:25:45Z\",\n            \"updated_at\": \"2024-04-16T13:25:45Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflows/8\"\n        },\n        \"relationships\": {\n            \"runs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/8/relationships/runs\",\n                    \"related\": \"http://localhost:8012/v2/workflows/8/runs\"\n                }\n            },\n            \"steps\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/8/relationships/steps\",\n                    \"related\": \"http://localhost:8012/v2/workflows/8/steps\"\n                }\n            },\n            \"schedules\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/8/relationships/schedules\",\n                    \"related\": \"http://localhost:8012/v2/workflows/8/schedules\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"abd74e93-d4b4-41fd-aa58-a0a584300508"},{"name":"Update a workflow","event":[{"listen":"test","script":{"id":"1fa7e567-aa67-4d0a-a7a7-482681c2aa56","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflow');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"workflow_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"name\": \"modified test\",","        \"description\": \"This is a modified test task\"","  });","    pm.expect(response.data.attributes.created_at).to.be.a('string');","    pm.expect(response.data.attributes.updated_at).to.be.a('string');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","console.log(\"Skip Run a workflow until some steps are created.\");","postman.setNextRequest(\"Retrieve a list of schedules\");"],"type":"text/javascript"}}],"id":"d0e67d56-6253-40b1-ae8b-2a4b7879d7bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"workflow\",\r\n    \"id\": \"{{workflow_id}}\",\r\n    \"attributes\": {\r\n        \"name\": \"modified test\",\r\n        \"description\": \"This is a modified test task\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/workflows/:workflowId","urlObject":{"path":["v2","workflows",":workflowId"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{workflow_id}}","key":"workflowId"}]}},"response":[{"id":"e1681164-ae8a-4031-85a2-7e49b6dde269","name":"Update a workflow","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"workflow\",\r\n    \"id\": \"{{workflow_id}}\",\r\n    \"attributes\": {\r\n        \"name\": \"modified test\",\r\n        \"description\": \"This is a modified test task\"\r\n    }\r\n  }\r\n}"},"url":{"raw":"{{base_url}}/v2/workflows/:workflowId","host":["{{base_url}}"],"path":["v2","workflows",":workflowId"],"variable":[{"key":"workflowId","value":"{{workflow_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 11:43:22 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 11:43:22 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xbae650b2b2409fa621fbe7c0b92585a2"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-tYaAwL8yQuykIkGCHpImBeA0m5WCeHxu';style-src 'self' 'nonce-tYaAwL8yQuykIkGCHpImBeA0m5WCeHxu';font-src 'self' data:"},{"key":"Request-Id","value":"262570f7-7c7d-4283-a9e6-72d2e925fb1d"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflow\",\n        \"id\": \"3\",\n        \"attributes\": {\n            \"name\": \"modified test\",\n            \"description\": \"This is a modified test task\",\n            \"created_at\": \"2023-09-05T11:42:26Z\",\n            \"updated_at\": \"2023-09-05T11:43:22Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflows/3\"\n        },\n        \"relationships\": {\n            \"runs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/3/relationships/runs\",\n                    \"related\": \"http://localhost:8012/v2/workflows/3/runs\"\n                }\n            },\n            \"steps\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/3/relationships/steps\",\n                    \"related\": \"http://localhost:8012/v2/workflows/3/steps\"\n                }\n            },\n            \"schedules\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/3/relationships/schedules\",\n                    \"related\": \"http://localhost:8012/v2/workflows/3/schedules\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"d0e67d56-6253-40b1-ae8b-2a4b7879d7bf"},{"name":"Run a workflow","event":[{"listen":"test","script":{"id":"f03f30c8-74e9-4d74-a82d-19c27a5b3f57","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains workflow data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflow');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","});","","pm.test(\"Response contains correct meta\", function () {","    pm.expect(response.meta.output).to.be.an('array');","    pm.expect(response.meta.status).to.eql(true);","});",""],"type":"text/javascript"}}],"id":"5bebfe8d-3fda-4156-a5e1-72f9ef0ffd75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/workflows/:workflow_id/run?date","description":"<p>Once a workflow has been created and steps have been added, you can now run the workflow. See <code>workflow_runs</code> and <code>workflow_step_logs</code> to view the output of a run.</p>\n","urlObject":{"path":["v2","workflows",":workflow_id","run"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The date to manually run the workflow for (in <code>YYYY-MM-DD</code> format). Defaults to the current date.</p>\n","type":"text/plain"},"key":"date","value":null}],"variable":[{"type":"any","value":"{{workflow_id}}","key":"workflow_id"}]}},"response":[{"id":"219d5228-d0b8-4a74-8c2f-98336158a160","name":"Run a workflow","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{base_url}}/v2/workflows/:workflow_id/run?date","host":["{{base_url}}"],"path":["v2","workflows",":workflow_id","run"],"query":[{"key":"date","value":null,"description":"The date to manually run the workflow for (in `YYYY-MM-DD` format). Defaults to the current date."}],"variable":[{"key":"workflow_id","value":"{{workflow_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 12:00:33 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 12:00:33 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xd814daee9f527afb265f44b2e46c5866"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xd814daee9f527afb265f44b2e46c5866"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Ufu7gMi6JdYKv9WBZTYI0MnwW4Tzrg5t';style-src 'self' 'nonce-Ufu7gMi6JdYKv9WBZTYI0MnwW4Tzrg5t';font-src 'self' data:"},{"key":"Request-Id","value":"88e4fd3b-463e-4672-ade7-662707b1f258"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflow\",\n        \"id\": \"12\",\n        \"attributes\": {\n            \"name\": \"test\",\n            \"description\": \"This is test task\",\n            \"created_at\": \"2023-09-05T11:59:50Z\",\n            \"updated_at\": \"2023-09-05T12:00:11Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflows/12\"\n        },\n        \"relationships\": {\n            \"runs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/12/relationships/runs\",\n                    \"related\": \"http://localhost:8012/v2/workflows/12/runs\"\n                }\n            },\n            \"steps\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/12/relationships/steps\",\n                    \"related\": \"http://localhost:8012/v2/workflows/12/steps\"\n                }\n            },\n            \"schedules\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflows/12/relationships/schedules\",\n                    \"related\": \"http://localhost:8012/v2/workflows/12/schedules\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"output\": [],\n        \"status\": true\n    }\n}"}],"_postman_id":"5bebfe8d-3fda-4156-a5e1-72f9ef0ffd75"},{"name":"Delete a workflow","event":[{"listen":"test","script":{"id":"ff226baf-ad6a-4c95-9282-ed73327ea5aa","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET workflow_id');","pm.environment.unset(\"workflow_id\");","console.log('UNSET workflowrun_id');","pm.environment.unset(\"workflowrun_id\");",""],"type":"text/javascript"}}],"id":"fbbfe53a-0337-47f2-9106-2ca38c24bc73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/workflows/{{workflow_id}}","description":"<p>On success, a <code>HTTP 204 No Content success status response</code> will be returned.</p>\n","urlObject":{"path":["v2","workflows","{{workflow_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"cb2efd6a-c074-4858-8d3f-55be370c913c","name":"Delete a workflow","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/workflows/{{workflow_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 11:59:25 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 11:59:25 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Clockwork-Id","value":"X0cfe18db78aea09818e3eb6cddb398fd"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X0cfe18db78aea09818e3eb6cddb398fd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-BkTOYFgufUwytfZF4qS1D9JlXxp7U9cH';style-src 'self' 'nonce-BkTOYFgufUwytfZF4qS1D9JlXxp7U9cH';font-src 'self' data:"},{"key":"Request-Id","value":"58ab8881-d36b-490b-88f8-985185ae6d29"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fbbfe53a-0337-47f2-9106-2ca38c24bc73"}],"id":"7e5a7803-2ebf-4812-82ea-1adba06a7846","description":"<p>Atomic support: ✔️</p>\n<p>Exivity documentation:<br /><a href=\"https://docs.exivity.com/Architecture%20concepts/Glossary#workflow\">https://docs.exivity.com/Architecture%20concepts/Glossary#workflow</a></p>\n<p>A workflow allows you to schedule various tasks and execute them at a specific date and time.</p>\n<p><strong>To create a workflow</strong></p>\n<ol>\n<li>Create a workflow object</li>\n<li>Create a workflow schedule</li>\n<li>Add steps to the workflow</li>\n</ol>\n<h4 id=\"the-workflow-object\">The Workflow Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td></td>\n</tr>\n<tr>\n<td>created_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>steps</td>\n<td>hasMany</td>\n<td>workflowstep</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>schedules</td>\n<td>hasMany</td>\n<td>workflowschedule</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>runs</td>\n<td>hasMany</td>\n<td>workflowrun</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7e5a7803-2ebf-4812-82ea-1adba06a7846"},{"name":"/workflowschedules","item":[{"name":"Retrieve a list of schedules","event":[{"listen":"test","script":{"id":"52f987ec-728a-4b1c-893e-4b8ca9b00a62","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"da7aa570-d225-4504-909e-0b84c91e2af7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowschedules?page[limit]&page[offset]&sort=&filter[attribute]&include=","urlObject":{"path":["v2","workflowschedules"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":""},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>workflow</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"cfc47ef1-50e9-4ba1-b7a4-2bda4621af5a","name":"Retrieve a list of schedules","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflowschedules?page[limit]&page[offset]&sort=&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","workflowschedules"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":"","description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `workflow`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 23 May 2022 06:14:10 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ro9xO85eo6fcCDcxsThUpuV1z4l5HbMz';style-src 'self' 'nonce-ro9xO85eo6fcCDcxsThUpuV1z4l5HbMz';font-src 'self' data:"},{"key":"Request-Id","value":"e0bf1c7a-1267-4aef-ab17-570310aafd80"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T14:37:22Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"hourly\",\n                \"frequency_modifier\": 4,\n                \"next_run\": \"2022-05-23T14:37:22Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/2\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/2/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/2/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T16:27:45Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 4,\n                \"next_run\": \"2022-05-23T16:27:45Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/3\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/3/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/3/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T17:45:25Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"hourly\",\n                \"frequency_modifier\": 2,\n                \"next_run\": \"2022-05-23T17:45:25Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/4\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/4/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/4/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T10:38:44Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 2,\n                \"next_run\": \"2022-05-23T10:38:44Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/5\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/5/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/5/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T04:50:26Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"daily\",\n                \"frequency_modifier\": 1,\n                \"next_run\": \"2022-05-24T04:50:26Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/6\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/6/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/6/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T16:32:25Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"daily\",\n                \"frequency_modifier\": 2,\n                \"next_run\": \"2022-05-23T16:32:25Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/7\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/7/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/7/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T05:22:08Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 1,\n                \"next_run\": \"2022-06-23T05:22:08Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/8\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/8/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/8/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T21:02:42Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 2,\n                \"next_run\": \"2022-05-23T21:02:42Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/9\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/9/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/9/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T16:01:37Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"daily\",\n                \"frequency_modifier\": 5,\n                \"next_run\": \"2022-05-23T16:01:37Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/10\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/10/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/10/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T10:13:42Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 5,\n                \"next_run\": \"2022-05-23T10:13:42Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/11\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/11/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/11/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T16:53:11Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"daily\",\n                \"frequency_modifier\": 4,\n                \"next_run\": \"2022-05-23T16:53:11Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/12\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/12/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/12/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"13\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T05:59:27Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"hourly\",\n                \"frequency_modifier\": 5,\n                \"next_run\": \"2022-05-23T10:59:27Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/13\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/13/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/13/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"14\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T11:08:31Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 1,\n                \"next_run\": \"2022-05-23T11:08:31Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/14\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/14/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/14/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"15\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T02:59:51Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 4,\n                \"next_run\": \"2022-09-23T02:59:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/15\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/15/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/15/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowschedule\",\n            \"id\": \"16\",\n            \"attributes\": {\n                \"start_time\": \"2022-05-23T22:10:43Z\",\n                \"timezone\": \"UTC\",\n                \"adjust_for_dst\": true,\n                \"frequency\": \"monthly\",\n                \"frequency_modifier\": 3,\n                \"next_run\": \"2022-05-23T22:10:43Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowschedules/16\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowschedules/16/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowschedules/16/workflow\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 22,\n            \"count\": 15,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 2\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/workflowschedules?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/workflowschedules?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"https://dev.exivity.net/v2/workflowschedules?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"https://dev.exivity.net/v2/workflowschedules?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=2\"\n    }\n}"}],"_postman_id":"da7aa570-d225-4504-909e-0b84c91e2af7"},{"name":"Add a new schedule","event":[{"listen":"test","script":{"id":"6cb43535-8f68-4855-844c-85fb00bc723b","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowschedule');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"start_time\": \"2020-01-01T18:00:00Z\",","        \"timezone\": \"Europe/Amsterdam\",","        \"adjust_for_dst\": true,","        \"frequency\": \"daily\",","        \"frequency_modifier\": 2","  });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"workflowschedule_id\", response.data.id);"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"033864d1-5670-4eec-bd0c-70359ed8c032","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireWorkflow)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript","packages":{}}}],"id":"ee544485-8a1d-4a26-9282-34ab39ece6b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowschedule\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"start_time\": \"2025-10-01T18:00:00Z\",\r\n\t\t\t\"timezone\": \"Europe/Amsterdam\",\r\n\t\t\t\"adjust_for_dst\": true,\r\n\t\t\t\"frequency\": \"daily\",\r\n\t\t\t\"frequency_modifier\": 2\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowschedules","urlObject":{"path":["v2","workflowschedules"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"985220ee-1fcf-460a-8f17-f5d9996ab104","name":"Add a new schedule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowschedule\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"start_time\": \"2025-01-01T18:00:00Z\",\r\n\t\t\t\"timezone\": \"Europe/Amsterdam\",\r\n\t\t\t\"adjust_for_dst\": true,\r\n\t\t\t\"frequency\": \"daily\",\r\n\t\t\t\"frequency_modifier\": 2\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowschedules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Location","value":"http://localhost:8012/v2/WorkflowSchedule/WorkflowSchedules"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 16 Apr 2024 15:21:16 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X2d9bca0abca48af45d8c320e829e8b19"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-XBEKJz1R1YuhvH8cWU9Zbh2t9IDG1IeJ';style-src 'self' 'nonce-XBEKJz1R1YuhvH8cWU9Zbh2t9IDG1IeJ';font-src 'self' data:"},{"key":"Request-Id","value":"60673c37-3451-4956-b785-47122d70f278"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowschedule\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"start_time\": \"2025-01-01T18:00:00Z\",\n            \"timezone\": \"Europe/Amsterdam\",\n            \"adjust_for_dst\": true,\n            \"frequency\": \"daily\",\n            \"frequency_modifier\": 2,\n            \"next_run\": \"1970-01-01T00:00:00Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowschedules/2\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowschedules/2/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowschedules/2/workflow\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"ee544485-8a1d-4a26-9282-34ab39ece6b9"},{"name":"Retrieve a schedule","event":[{"listen":"test","script":{"id":"1c1bcaf3-00bc-4cd3-8ed4-29fa2be3fa3f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowschedule');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"workflowschedule_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"start_time\": \"2020-01-01T18:00:00Z\",","        \"timezone\": \"Europe/Amsterdam\",","        \"adjust_for_dst\": true,","        \"frequency\": \"daily\",","        \"frequency_modifier\": 2","  });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"a568e989-5bfb-4e95-95fb-b95d31570ee0","exec":[""],"type":"text/javascript"}}],"id":"14ac0228-8d7f-4009-852f-f406435c7549","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowschedules/:workflowschedule_id?include=","urlObject":{"path":["v2","workflowschedules",":workflowschedule_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"type":"any","value":"{{workflowschedule_id}}","key":"workflowschedule_id"}]}},"response":[{"id":"0998c6c6-9da0-493f-9592-3b8efdc50805","name":"Retrieve a schedule","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflowschedules/:workflowschedule_id?include=","host":["{{base_url}}"],"path":["v2","workflowschedules",":workflowschedule_id"],"query":[{"key":"include","value":"","description":"Include additional related resources"}],"variable":[{"key":"workflowschedule_id","value":"{{workflowschedule_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 16 Apr 2024 15:21:46 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X23a57e825babc8eb45f069a6b9cd7205"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-G31UbujpcXSQ5zUe92SDBj9txnqBXdjx';style-src 'self' 'nonce-G31UbujpcXSQ5zUe92SDBj9txnqBXdjx';font-src 'self' data:"},{"key":"Request-Id","value":"f57a3cee-92f6-4156-88c0-3732b6e80b8c"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowschedule\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"start_time\": \"2025-01-01T18:00:00Z\",\n            \"timezone\": \"Europe/Amsterdam\",\n            \"adjust_for_dst\": true,\n            \"frequency\": \"daily\",\n            \"frequency_modifier\": 2,\n            \"next_run\": \"2025-01-01T18:00:00Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowschedules/2\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowschedules/2/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowschedules/2/workflow\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"14ac0228-8d7f-4009-852f-f406435c7549"},{"name":"Update a schedule","event":[{"listen":"test","script":{"id":"0dcc27c1-e03b-47db-801c-e7282603ee80","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowschedule');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"workflowschedule_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"start_time\": \"2020-01-01T18:00:00Z\",","        \"timezone\": \"Europe/London\",","        \"adjust_for_dst\": true,","        \"frequency\": \"daily\",","        \"frequency_modifier\": 2","  });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"a9e8558b-6eda-410d-89f4-9222eb2b4acc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"workflowschedule\",\r\n    \"id\": \"{{workflowschedule_id}}\",\r\n    \"attributes\": {\r\n      \"timezone\": \"Europe/London\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/workflowschedules/:workflowschedule_id","urlObject":{"path":["v2","workflowschedules",":workflowschedule_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{workflowschedule_id}}","key":"workflowschedule_id"}]}},"response":[{"id":"fa08c4c9-779f-419a-8268-d671b68c7db4","name":"Change timezone","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"workflowschedule\",\r\n    \"id\": \"{{workflowschedule_id}}\",\r\n    \"attributes\": {\r\n      \"timezone\": \"Europe/London\"\r\n    }\r\n  }\r\n}"},"url":{"raw":"{{base_url}}/v2/workflowschedules/:workflowschedule_id","host":["{{base_url}}"],"path":["v2","workflowschedules",":workflowschedule_id"],"variable":[{"key":"workflowschedule_id","value":"{{workflowschedule_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 16 Apr 2024 15:22:04 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xa6e9f4dc3a265186c32984e7028235df"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-2Is0IpYkLkSwrtVpg21cxSnmaWWoByNz';style-src 'self' 'nonce-2Is0IpYkLkSwrtVpg21cxSnmaWWoByNz';font-src 'self' data:"},{"key":"Request-Id","value":"4d68f058-52b8-48e8-a7ff-889b3d43b1c7"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowschedule\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"start_time\": \"2025-01-01T18:00:00Z\",\n            \"timezone\": \"Europe/London\",\n            \"adjust_for_dst\": true,\n            \"frequency\": \"daily\",\n            \"frequency_modifier\": 2,\n            \"next_run\": \"2025-01-01T18:00:00Z\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowschedules/2\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowschedules/2/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowschedules/2/workflow\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"a9e8558b-6eda-410d-89f4-9222eb2b4acc"},{"name":"Delete a schedule","event":[{"listen":"test","script":{"id":"c4a6e737-3b93-4a83-8224-787d2a01deb3","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET workflowschedule_id');","pm.environment.unset(\"workflowschedule_id\");",""],"type":"text/javascript"}}],"id":"1247f6fd-e583-49c5-9d49-a2fd44a36fb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/workflowschedules/:workflowschedule_id","urlObject":{"path":["v2","workflowschedules",":workflowschedule_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{workflowschedule_id}}","key":"workflowschedule_id"}]}},"response":[{"id":"2d7bed3c-d431-42c9-898d-41ba4ac57f6e","name":"Delete a schedule","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/workflowschedules/:workflowschedule_id","host":["{{base_url}}"],"path":["v2","workflowschedules",":workflowschedule_id"],"variable":[{"key":"workflowschedule_id","value":"{{workflowschedule_id}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 16 Apr 2024 15:23:50 GMT"},{"key":"X-Clockwork-Id","value":"X40ce1145a0e2631b39e575a9f7a1c778"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X40ce1145a0e2631b39e575a9f7a1c778"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Nxis3X8vDMbWgPIF0g6VbmPQ0Ba5JLmB';style-src 'self' 'nonce-Nxis3X8vDMbWgPIF0g6VbmPQ0Ba5JLmB';font-src 'self' data:"},{"key":"Request-Id","value":"bec4ed7c-ed5b-432f-92b8-cfc0efb9dbbb"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1247f6fd-e583-49c5-9d49-a2fd44a36fb9"}],"id":"5ef8f131-98e0-43d4-85e5-68b3fa499746","description":"<p>Atomic support: ✔️</p>\n<p>Exivity documentation:<br /><a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#workflowschedule\">https://docs.exivity.com/architecture%20concepts/glossary/#workflowschedule</a></p>\n<p>Schedule how often a workflow should run.</p>\n<h4 id=\"the-workflow-schedule-object\">The Workflow Schedule Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_time</td>\n<td><em>datetime</em></td>\n<td>📝 editable</td>\n<td>Required. Earliest time workflow can start.</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td><em>timezone</em></td>\n<td>📝 editable</td>\n<td>Required. The timezone is used only when adjust_for_dst is set to true. If the timezone doesn't use daylight saving time <em>(i.e. (UTC) Coordinated Universal Time, (UTC+01:00) West Central Africa etc.)</em>, no changes are applied when calculating the next run.</td>\n</tr>\n<tr>\n<td>adjust_for_dst</td>\n<td><em>boolean</em></td>\n<td>📝 editable</td>\n<td>Required.  <br />If true, and the timezone uses daylight saving time, the workflow run time is adjusted to take this into account.  <br /><strong>Example:</strong>  <br />* in winter, 00:01 UTC means 01:01 in Berlin  <br />* in summer, 00:01 UTC means 02:01 in Berlin</td>\n</tr>\n<tr>\n<td>frequency</td>\n<td><em>enum</em> (<code>hourly</code><em>,</em> <code>daily</code><em>,</em> <code>monthly</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>frequency_modifier</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Examples  <br /><em><strong>frequency</strong></em><strong>: daily,</strong> <em><strong>frequency_modifier</strong></em><strong>: 2</strong> - the workflow will run every two days  <br />  <br /><em><strong>frequency</strong></em><strong>: hourly,</strong> <em><strong>frequency_modifier</strong></em><strong>: 3</strong> - the workflow will run every three hours</td>\n</tr>\n<tr>\n<td>next_run</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>workflow</td>\n<td>hasOne</td>\n<td>workflow</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ca12ff63-7ca9-4df1-8b76-a47b52a28348","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"29b81b8f-5dd1-4711-96bd-d149bebc304a","type":"text/javascript","exec":[""]}}],"_postman_id":"5ef8f131-98e0-43d4-85e5-68b3fa499746"},{"name":"/workflowsteps","item":[{"name":"Add a new extract step","event":[{"listen":"test","script":{"id":"6440a4bf-4da0-40fc-85d2-116ad31db9f1","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowstep');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","\t\t\"type\": \"transform\",","\t\t\"sort\": 1,","\t\t\"timeout\": 600,","\t});","\tpm.expect(response.data.attributes.options).to.be.an('object');","\tpm.expect(response.data.attributes.options).to.include({","\t\t\"script\": \"Workflow_transformer\",","        \"from_date_offset\": -2,","\t\t\"to_date_offset\": 2","\t});","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"transcript_workflowstep_id\", response.data.id);","console.log('SET transcript_workflowstep_id: ' + pm.environment.get(\"transcript_workflowstep_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"086a95f3-67c4-4dcc-814c-f8045918483a","exec":["pm.sendRequest({\r","    url: pm.variables.get(\"base_url\") + '/v1/transformers',\r","    method: 'POST',\r","    header: {\r","        'Accept': 'application/json',\r","        'Content-Type': 'application/json',\r","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")\r","    },\r","    body: {\r","        mode: 'raw',\r","        raw: JSON.stringify({\r","\t        \"name\": \"Workflow transformer\",\r","\t        \"contents\": \"# script here\"\r","        })\r","    }\r","})"],"type":"text/javascript"}}],"id":"ea6f01ba-fe9e-4e87-8993-57c6759b8e69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowstep\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"step_type\": \"extract\",\r\n\t\t\t\"timeout\": 600,\r\n\t\t\t\"options\": {\r\n\t\t\t\t\"script\": \"Workflow_extractor\",\r\n\t\t\t\t\"from_date_offset\": -2,\r\n\t\t\t\t\"to_date_offset\": -1,\r\n\t\t\t\t\"arguments\": \"arg3 arg4\"\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowsteps","description":"<h4 id=\"options\">Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>from_date_offset</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Date offset, default 0 (today)  <br />Exampele:  <br />0 - today  <br />-1 = yesterday  <br />-2 = 2 days ago</td>\n</tr>\n<tr>\n<td>to_date_offset</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Date offset, default 0 (today)</td>\n</tr>\n<tr>\n<td>arguments</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Custom extractor arguments</td>\n</tr>\n<tr>\n<td>environment_id</td>\n<td><em>numeric</em></td>\n<td>📝 editable</td>\n<td>Optional. Loads the variables that have been set in a given environment.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","workflowsteps"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"3a1bd759-59fe-40f3-8240-4636c3522bac","name":"Add a new extract step","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowstep\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"step_type\": \"extract\",\r\n\t\t\t\"timeout\": 600,\r\n\t\t\t\"options\": {\r\n\t\t\t\t\"script\": \"Workflow_extractor\",\r\n\t\t\t\t\"from_date_offset\": \"-2\",\r\n\t\t\t\t\"to_date_offset\": \"-1\",\r\n\t\t\t\t\"arguments\": \"arg3 arg4\"\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowsteps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 12 Sep 2023 13:51:41 GMT"},{"key":"Date","value":"Tue, 12 Sep 2023 13:51:41 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/WorkflowStep/WorkflowSteps"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X7fe075b78bdfd9333c719291970b11ff"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-XvGXybPIuvNs24jWM1vRCihbISG1OvBB';style-src 'self' 'nonce-XvGXybPIuvNs24jWM1vRCihbISG1OvBB';font-src 'self' data:"},{"key":"Request-Id","value":"5b4eabc2-0db2-4314-9b1c-8a86a5970dbb"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"30\",\n        \"attributes\": {\n            \"step_type\": \"extract\",\n            \"options\": {\n                \"script\": \"Workflow_extractor\",\n                \"from_date_offset\": -2,\n                \"to_date_offset\": -1,\n                \"arguments\": \"arg3 arg4\",\n                \"environment_id\": null\n            },\n            \"timeout\": 600,\n            \"wait\": true\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/30\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/30/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/30/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/30/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/30/steplogs\"\n                }\n            },\n            \"previous\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/30/relationships/previous\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/30/previous\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"ea6f01ba-fe9e-4e87-8993-57c6759b8e69"},{"name":"Add a new transform step","event":[{"listen":"test","script":{"id":"6440a4bf-4da0-40fc-85d2-116ad31db9f1","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowstep');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","\t\t\"type\": \"transform\",","\t\t\"sort\": 1,","\t\t\"timeout\": 600,","\t});","\tpm.expect(response.data.attributes.options).to.be.an('object');","\tpm.expect(response.data.attributes.options).to.include({","\t\t\"script\": \"Workflow_transformer\",","        \"from_date_offset\": -2,","\t\t\"to_date_offset\": 2","\t});","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"transcript_workflowstep_id\", response.data.id);","console.log('SET transcript_workflowstep_id: ' + pm.environment.get(\"transcript_workflowstep_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"086a95f3-67c4-4dcc-814c-f8045918483a","exec":["pm.sendRequest({\r","    url: pm.variables.get(\"base_url\") + '/v1/transformers',\r","    method: 'POST',\r","    header: {\r","        'Accept': 'application/json',\r","        'Content-Type': 'application/json',\r","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")\r","    },\r","    body: {\r","        mode: 'raw',\r","        raw: JSON.stringify({\r","\t        \"name\": \"Workflow transformer\",\r","\t        \"contents\": \"# script here\"\r","        })\r","    }\r","})"],"type":"text/javascript"}}],"id":"26ea67fa-008e-4337-9e81-e543000216ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowstep\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"step_type\": \"transform\",\r\n\t\t\t\"timeout\": 600,\r\n            \"wait\": false,\r\n\t\t\t\"options\": {\r\n\t\t\t\t\"script\": \"Workflow_transformer\",\r\n\t\t\t\t\"from_date_offset\": -2,\r\n\t\t\t\t\"to_date_offset\": 0\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowsteps","description":"<h4 id=\"options\">Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>from_date_offset</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Date offset, default 0 (today)  <br />Exampele:  <br />0 - today  <br />-1 = yesterday  <br />-2 = 2 days ago</td>\n</tr>\n<tr>\n<td>to_date_offset</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>Date offset, default 0 (today).</td>\n</tr>\n<tr>\n<td>environment_id</td>\n<td><em>numeric</em></td>\n<td>📝 editable</td>\n<td>Nullable</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","workflowsteps"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e64c975e-6def-446a-9e21-12928747aace","name":"Add a new transform step","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowstep\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"step_type\": \"transform\",\r\n\t\t\t\"timeout\": 600,\r\n            \"wait\": false,\r\n\t\t\t\"options\": {\r\n\t\t\t\t\"script\": \"Workflow_transformer\",\r\n\t\t\t\t\"from_date_offset\": -2,\r\n\t\t\t\t\"to_date_offset\": 0\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowsteps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 12 Sep 2023 13:56:01 GMT"},{"key":"Date","value":"Tue, 12 Sep 2023 13:56:01 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/WorkflowStep/WorkflowSteps"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X69f9a09747aa00ffe6bd7893eb905883"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-WQ3DKCsnKhmu8sSaFX7CHGR1mGOgTLy2';style-src 'self' 'nonce-WQ3DKCsnKhmu8sSaFX7CHGR1mGOgTLy2';font-src 'self' data:"},{"key":"Request-Id","value":"bf945600-b914-448c-8294-99f2bd9832ca"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"35\",\n        \"attributes\": {\n            \"step_type\": \"transform\",\n            \"options\": {\n                \"script\": \"Workflow_transformer\",\n                \"from_date_offset\": -2,\n                \"to_date_offset\": 0,\n                \"environment_id\": null\n            },\n            \"timeout\": 600,\n            \"wait\": false\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/35\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/35/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/35/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/35/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/35/steplogs\"\n                }\n            },\n            \"previous\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/35/relationships/previous\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/35/previous\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"26ea67fa-008e-4337-9e81-e543000216ed"},{"name":"Add a new \"prepare report\" step","event":[{"listen":"test","script":{"id":"a5580bff-c114-4de1-8f8a-06275eeb3c47","exec":["pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});\r","\r","const response = pm.response.json();\r","console.log(response);\r","\r","pm.test(\"Response contains correct data\", function () {\r","    pm.expect(response.data).to.be.an('object');\r","    pm.expect(response.data.type).to.eql('workflowstep');\r","    pm.expect(response.data.id).to.not.be.undefined;\r","    pm.expect(response.data.attributes).to.be.an('object');\r","    pm.expect(response.data.attributes).to.include({\r","\t\t\"type\": \"prepare_report\",\r","\t\t\"sort\": 1,\r","\t\t\"timeout\": 600,\r","\t});\r","\tpm.expect(response.data.attributes.options).to.be.an('object');\r","\tpm.expect(response.data.attributes.options).to.include({\r","\t\t\"report_id\": pm.environment.get('report_id'),\r","        \"from_date_offset\": 1,\r","        \"to_date_offset\": 2\r","\t});\r","});\r","\r","pm.test(\"Response contains data.links\", function () {\r","    pm.expect(response.data.links).to.be.an('object');\r","});\r","\r","pm.environment.set(\"edify_workflowstep_id\", response.data.id);\r","console.log('SET edify_workflowstep_id: ' + pm.environment.get(\"edify_workflowstep_id\"));\r",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"28e0ddc5-4e0f-4f7f-8f75-497fcda32d13","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireReport)\r","    .then(api.requireWorkflow)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r","    "],"type":"text/javascript"}}],"id":"40d2bd5b-3555-4763-acfb-2a8b78b94a57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowstep\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"step_type\": \"prepare_report\",\r\n\t\t\t\"timeout\": 600,\r\n\t\t\t\"options\": {\r\n\t\t\t\t\"report_id\": \"{{report_id}}\",\r\n\t\t\t\t\"from_date_offset\": -3,\r\n\t\t\t\t\"to_date_offset\": 0\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowsteps","description":"<h4 id=\"options\">Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>report_id</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>split</td>\n<td><em>enum</em> (<code>daily</code>, <code>monthly</code>)</td>\n<td>📝 editable</td>\n<td>Default: monthly  <br />Split the proccessing into daily/monthly chunks, to speed to the processing time.</td>\n</tr>\n<tr>\n<td>from_date_offset</td>\n<td><em>numeric</em></td>\n<td>📝 editable</td>\n<td>Date offset, default 0 (today)  <br />Exampele:  <br />0 - today  <br />-1 = yesterday  <br />-2 = 2 days ago</td>\n</tr>\n<tr>\n<td>to_date_offset</td>\n<td><em>numeric</em></td>\n<td>📝 editable</td>\n<td>Date offset, default 0 (today).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","workflowsteps"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"c4d936e3-dc91-43ee-b03e-1f503b984532","name":"Add a new \"prepare report\" step","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"workflowstep\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"step_type\": \"prepare_report\",\r\n\t\t\t\"timeout\": 600,\r\n\t\t\t\"options\": {\r\n\t\t\t\t\"report_id\": \"{{report_id}}\",\r\n\t\t\t\t\"from_date_offset\": -3,\r\n\t\t\t\t\"to_date_offset\": 0\r\n\t\t\t}\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"workflow\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"workflow\",\r\n\t\t\t\t\t\"id\": \"{{workflow_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n    \t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/workflowsteps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 12 Sep 2023 13:58:31 GMT"},{"key":"Date","value":"Tue, 12 Sep 2023 13:58:31 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/WorkflowStep/WorkflowSteps"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xd38039f819ec8d03ada64ba419cc7657"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-hDgRwJjyPKEqs1GxasOt6v2dESnIXH8q';style-src 'self' 'nonce-hDgRwJjyPKEqs1GxasOt6v2dESnIXH8q';font-src 'self' data:"},{"key":"Request-Id","value":"1c4fa083-a23c-4cab-b309-70c6390219a4"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"36\",\n        \"attributes\": {\n            \"step_type\": \"prepare_report\",\n            \"options\": {\n                \"report_id\": \"5\",\n                \"from_date_offset\": -3,\n                \"to_date_offset\": 0\n            },\n            \"timeout\": 600,\n            \"wait\": true\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/36\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/36/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/36/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/36/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/36/steplogs\"\n                }\n            },\n            \"previous\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/36/relationships/previous\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/36/previous\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"40d2bd5b-3555-4763-acfb-2a8b78b94a57"},{"name":"Add a new execute step","event":[{"listen":"test","script":{"id":"9b526afa-3965-4130-bf4c-befc30198389","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowstep');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","    \"type\": \"execute\",","    \"sort\": 1,","    \"timeout\": 600,","  });","  pm.expect(response.data.attributes.options).to.be.an('object');","  pm.expect(response.data.attributes.options).to.include({","    \"command\": \"echo \\\"testing\\\"\"","  });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"execute_workflowstep_id\", response.data.id);","console.log('SET execute_workflowstep_id: ' + pm.environment.get(\"execute_workflowstep_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9e9f9490-8a86-4176-a961-177740a05fb5","exec":[""],"type":"text/javascript"}}],"id":"a3048146-debe-44a0-9795-33f8380b5367","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"workflowstep\",\r\n        \"attributes\": {\r\n            \"step_type\": \"execute\",\r\n            \"timeout\": 600,\r\n            \"options\": {\r\n                \"command\": \"echo \\\"testing\\\"\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"workflow\": {\r\n                \"data\": {\r\n                    \"type\": \"workflow\",\r\n                    \"id\": \"{{workflow_id}}\"\r\n                }\r\n            }\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/workflowsteps","description":"<h4 id=\"options\">Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>command</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","workflowsteps"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d37e7090-3579-486a-b442-16d9997a606d","name":"Add a new execute step","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"workflowstep\",\r\n        \"attributes\": {\r\n            \"step_type\": \"execute\",\r\n            \"timeout\": 600,\r\n            \"options\": {\r\n                \"command\": \"echo \\\"testing\\\"\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"workflow\": {\r\n                \"data\": {\r\n                    \"type\": \"workflow\",\r\n                    \"id\": \"{{workflow_id}}\"\r\n                }\r\n            }\r\n        }\r\n    }\r\n}\r\n"},"url":"{{base_url}}/v2/workflowsteps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 12:14:57 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 12:14:57 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/WorkflowStep/WorkflowSteps"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X7a98c2136921271ae701c255f121ce70"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-td8Kd0NObp9FIzCxdEzKcTniqcuQIsmf';style-src 'self' 'nonce-td8Kd0NObp9FIzCxdEzKcTniqcuQIsmf';font-src 'self' data:"},{"key":"Request-Id","value":"d81bf9a6-37b1-47d4-b1a2-d8c6da64f36b"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"26\",\n        \"attributes\": {\n            \"step_type\": \"execute\",\n            \"options\": {\n                \"command\": \"echo \\\"testing\\\"\"\n            },\n            \"timeout\": 600,\n            \"wait\": true\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/26\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/26/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/26/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/26/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/26/steplogs\"\n                }\n            },\n            \"previous\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/26/relationships/previous\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/26/previous\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"a3048146-debe-44a0-9795-33f8380b5367"},{"name":"Add a new proximity step","event":[{"listen":"test","script":{"id":"665820f9-893d-4d4e-a85b-f53c68a893e9","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowstep');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","    \"type\": \"proximity\",","    \"sort\": 1,","    \"timeout\": 600,","  });","  pm.expect(response.data.attributes.options).to.be.an('object');","  pm.expect(response.data.attributes.options).to.include({","    \"command\": \"exivity:gc\",","        \"arguments\": \"\"","  });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"proximity_workflowstep_id\", response.data.id);","console.log('SET proximity_workflowstep_id: ' + pm.environment.get(\"proximity_workflowstep_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"144e45e4-ecdb-4115-9b4b-41497fcc4b57","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireWorkflow)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"88de6439-0020-4743-a836-526d7d179dda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"workflowstep\",\r\n        \"attributes\": {\r\n            \"step_type\": \"proximity\",\r\n            \"timeout\": 600,\r\n            \"options\": {\r\n                \"command\": \"exivity:gc\",\r\n                \"arguments\": \"\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"workflow\": {\r\n                \"data\": {\r\n                    \"type\": \"workflow\",\r\n                    \"id\": \"{{workflow_id}}\"\r\n                }\r\n            }\r\n       }\r\n    }\r\n}"},"url":"{{base_url}}/v2/workflowsteps","description":"<h4 id=\"options\">Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>command</td>\n<td><em>enum</em>(<code>exivity:gc</code>, <code>exivity:purge-cache</code> )</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>arguments</td>\n<td><em>string</em></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","workflowsteps"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"7a5d724f-d47d-475e-937f-6da7a210cbb7","name":"Add a new proximity step","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"workflowstep\",\r\n        \"attributes\": {\r\n            \"step_type\": \"proximity\",\r\n            \"timeout\": 600,\r\n            \"options\": {\r\n                \"command\": \"exivity:gc\",\r\n                \"arguments\": \"\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"workflow\": {\r\n                \"data\": {\r\n                    \"type\": \"workflow\",\r\n                    \"id\": \"{{workflow_id}}\"\r\n                }\r\n            }\r\n       }\r\n    }\r\n}"},"url":"{{base_url}}/v2/workflowsteps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 12:16:12 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 12:16:12 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/WorkflowStep/WorkflowSteps"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xcdeb17145c5fef8c0e6e5ad3d82fda2e"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-37RQoZW3wfAzu40Mq1KXNDxGNMYuJRIO';style-src 'self' 'nonce-37RQoZW3wfAzu40Mq1KXNDxGNMYuJRIO';font-src 'self' data:"},{"key":"Request-Id","value":"14d875b0-d6c3-4a00-8dda-c1fca482b64b"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"27\",\n        \"attributes\": {\n            \"step_type\": \"proximity\",\n            \"options\": {\n                \"command\": \"exivity:gc\",\n                \"arguments\": \"\"\n            },\n            \"timeout\": 600,\n            \"wait\": true\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/27\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/27/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/27/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/27/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/27/steplogs\"\n                }\n            },\n            \"previous\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/27/relationships/previous\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/27/previous\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"88de6439-0020-4743-a836-526d7d179dda"},{"name":"Add a new budget step (development only)","event":[{"listen":"test","script":{"id":"9b8a5ddf-67d4-4eaf-a6f5-3f1d36dac3e5","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowstep');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","    \"type\": \"proximity\",","    \"sort\": 1,","    \"timeout\": 600,","  });","  pm.expect(response.data.attributes.options).to.be.an('object');","  pm.expect(response.data.attributes.options).to.include({","    \"command\": \"exivity:gc\",","        \"arguments\": \"\"","  });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"proximity_workflowstep_id\", response.data.id);","console.log('SET proximity_workflowstep_id: ' + pm.environment.get(\"proximity_workflowstep_id\"));"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"22ccf72f-0c49-4431-9a0d-0157c63d185f","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireReport)\r","    .then(api.requireWorkflow)\r","    .then(api.requireBudget)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"994b3187-6b82-44d2-a120-1aa58541f3ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"workflowstep\",\r\n        \"attributes\": {\r\n            \"step_type\": \"evaluate_budget\",\r\n            \"timeout\": 600,\r\n            \"options\": {\r\n                \"budget_id\": \"{{budget_id}}\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"workflow\": {\r\n                \"data\": {\r\n                    \"type\": \"workflow\",\r\n                    \"id\": \"{{workflow_id}}\"\r\n                }\r\n            }\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/workflowsteps","description":"<h4 id=\"options\">Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>budget_id</td>\n<td>numeric</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","workflowsteps"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"404400b7-7dcd-492c-81d9-82b805de3f16","name":"Add a new budget step (development only)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"workflowstep\",\r\n        \"attributes\": {\r\n            \"step_type\": \"evaluate_budget\",\r\n            \"timeout\": 600,\r\n            \"options\": {\r\n                \"budget_id\": \"{{budget_id}}\"\r\n            }\r\n        },\r\n        \"relationships\": {\r\n            \"workflow\": {\r\n                \"data\": {\r\n                    \"type\": \"workflow\",\r\n                    \"id\": \"{{workflow_id}}\"\r\n                }\r\n            }\r\n        }\r\n    }\r\n}"},"url":"{{base_url}}/v2/workflowsteps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 12 Sep 2023 14:15:45 GMT"},{"key":"Date","value":"Tue, 12 Sep 2023 14:15:45 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/WorkflowStep/WorkflowSteps"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X5ae689f229b174f86b7d1d0b0dbcb251"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-hkajDLgnCXjY0Kyimb5ll9iN85szgXnm';style-src 'self' 'nonce-hkajDLgnCXjY0Kyimb5ll9iN85szgXnm';font-src 'self' data:"},{"key":"Request-Id","value":"3fac2a1c-be38-4b1f-b08d-c7325c47b92a"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"38\",\n        \"attributes\": {\n            \"step_type\": \"evaluate_budget\",\n            \"options\": {\n                \"budget_id\": \"3\"\n            },\n            \"timeout\": 600,\n            \"wait\": true\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/38\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/38/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/38/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/38/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/38/steplogs\"\n                }\n            },\n            \"previous\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/38/relationships/previous\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/38/previous\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"994b3187-6b82-44d2-a120-1aa58541f3ad"},{"name":"Retrieve a list of steps","event":[{"listen":"test","script":{"id":"e1c4c2aa-69d1-4071-b7f6-7c02f3c4578e","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});","","pm.environment.set(\"workflowstep_id\", response.data[0].id);","console.log('SET workflowstep_id: ' + pm.environment.get(\"workflowstep_id\"));"],"type":"text/javascript"}}],"id":"eb243692-026c-44af-aa0c-edbc55e0445d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowsteps?page[limit]&page[offset]&sort=&filter[attribute]&include=","urlObject":{"path":["v2","workflowsteps"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":""},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>workflow</code>, <code>steplogs</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"c3a19103-014e-4187-9eb5-2c26971fc798","name":"Retrieve a list of steps","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflowsteps?page[limit]&page[offset]&sort=&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","workflowsteps"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":"","description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `workflow`, `steplogs`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 12:17:05 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 12:17:05 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xad2a38ad47ace112f7b79b7601c0a443"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-K2vog1dP9CZbB8MUyJnaR8BYZMom3f1J';style-src 'self' 'nonce-K2vog1dP9CZbB8MUyJnaR8BYZMom3f1J';font-src 'self' data:"},{"key":"Request-Id","value":"58b1ed62-9c42-4c91-a9de-abf257daba8a"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"step_type\": \"extract\",\n                \"options\": {\n                    \"script\": \"Workflow_extractor\",\n                    \"from_date_offset\": -2,\n                    \"to_date_offset\": 2,\n                    \"arguments\": \"test1 test2\",\n                    \"environment_id\": null\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/2\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/2/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/2/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/2/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/2/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/2/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/2/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"step_type\": \"extract\",\n                \"options\": {\n                    \"script\": \"Workflow_extractor\",\n                    \"from_date_offset\": -2,\n                    \"to_date_offset\": 2,\n                    \"arguments\": \"test1 test2\",\n                    \"environment_id\": null\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/1\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/1/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/1/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/1/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/1/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/1/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/1/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"step_type\": \"transform\",\n                \"options\": {\n                    \"script\": \"Workflow_transformer\",\n                    \"from_date_offset\": -2,\n                    \"to_date_offset\": 2,\n                    \"environment_id\": null\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/4\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/4/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/4/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/4/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/4/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/4/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/4/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"step_type\": \"prepare_report\",\n                \"options\": {\n                    \"report_id\": \"2\",\n                    \"from_date_offset\": 1,\n                    \"to_date_offset\": 2\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/5\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/5/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/5/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/5/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/5/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/5/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/5/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"step_type\": \"execute\",\n                \"options\": {\n                    \"command\": \"echo \\\"testing\\\"\"\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/6\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/6/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/6/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/6/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/6/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/6/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/6/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"step_type\": \"proximity\",\n                \"options\": {\n                    \"command\": \"exivity:gc\",\n                    \"arguments\": \"\"\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/7\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/7/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/7/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/7/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/7/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/7/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/7/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"step_type\": \"proximity\",\n                \"options\": {\n                    \"command\": \"exivity:gc\",\n                    \"arguments\": \"\"\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/8\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/8/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/8/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/8/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/8/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/8/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/8/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"step_type\": \"transform\",\n                \"options\": {\n                    \"script\": \"Workflow_transformer\",\n                    \"from_date_offset\": -2,\n                    \"to_date_offset\": 2,\n                    \"environment_id\": null\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/3\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/3/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/3/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/3/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/3/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/3/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/3/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"15\",\n            \"attributes\": {\n                \"step_type\": \"extract\",\n                \"options\": {\n                    \"script\": \"Workflow_extractor\",\n                    \"from_date_offset\": -2,\n                    \"to_date_offset\": 2,\n                    \"arguments\": \"test1 test2\",\n                    \"environment_id\": null\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/15\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/15/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/15/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/15/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/15/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/15/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/15/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"16\",\n            \"attributes\": {\n                \"step_type\": \"extract\",\n                \"options\": {\n                    \"script\": \"Workflow_extractor\",\n                    \"from_date_offset\": -2,\n                    \"to_date_offset\": 2,\n                    \"arguments\": \"test1 test2\",\n                    \"environment_id\": null\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/16\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/16/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/16/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/16/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/16/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/16/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/16/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"20\",\n            \"attributes\": {\n                \"step_type\": \"transform\",\n                \"options\": {\n                    \"script\": \"Workflow_transformer\",\n                    \"from_date_offset\": -2,\n                    \"to_date_offset\": 2,\n                    \"environment_id\": null\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/20\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/20/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/20/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/20/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/20/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/20/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/20/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"21\",\n            \"attributes\": {\n                \"step_type\": \"prepare_report\",\n                \"options\": {\n                    \"report_id\": \"6\",\n                    \"from_date_offset\": 1,\n                    \"to_date_offset\": 2\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/21\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/21/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/21/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/21/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/21/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/21/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/21/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"22\",\n            \"attributes\": {\n                \"step_type\": \"execute\",\n                \"options\": {\n                    \"command\": \"echo \\\"testing\\\"\"\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/22\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/22/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/22/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/22/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/22/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/22/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/22/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"23\",\n            \"attributes\": {\n                \"step_type\": \"proximity\",\n                \"options\": {\n                    \"command\": \"exivity:gc\",\n                    \"arguments\": \"\"\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/23\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/23/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/23/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/23/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/23/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/23/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/23/previous\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowstep\",\n            \"id\": \"24\",\n            \"attributes\": {\n                \"step_type\": \"proximity\",\n                \"options\": {\n                    \"command\": \"exivity:gc\",\n                    \"arguments\": \"\"\n                },\n                \"timeout\": 600,\n                \"wait\": true\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v2/workflowsteps/24\"\n            },\n            \"relationships\": {\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/24/relationships/workflow\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/24/workflow\"\n                    }\n                },\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/24/relationships/steplogs\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/24/steplogs\"\n                    }\n                },\n                \"previous\": {\n                    \"links\": {\n                        \"self\": \"http://localhost:8012/v2/workflowsteps/24/relationships/previous\",\n                        \"related\": \"http://localhost:8012/v2/workflowsteps/24/previous\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 22,\n            \"count\": 15,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 2\n        }\n    },\n    \"links\": {\n        \"self\": \"http://localhost:8012/v2/workflowsteps?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"http://localhost:8012/v2/workflowsteps?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"http://localhost:8012/v2/workflowsteps?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"http://localhost:8012/v2/workflowsteps?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=2\"\n    }\n}"}],"_postman_id":"eb243692-026c-44af-aa0c-edbc55e0445d"},{"name":"Retrieve a step","event":[{"listen":"test","script":{"id":"5d67106b-f07e-4003-910b-f4b5f672acc1","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowstep');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"proximity_workflowstep_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","    \"type\": \"proximity\",","    \"prev\": null,","    \"next\": null,","    \"timeout\": 600","  });","  pm.expect(response.data.attributes.options).to.be.an('object');","  pm.expect(response.data.attributes.options).to.include({","    \"command\": \"exivity:gc\",","        \"arguments\": \"\"","  });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});",""],"type":"text/javascript"}}],"id":"83bbd63b-ed9b-4965-9bd4-5d41393c6bd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowsteps/:workflowstep_id?include=","urlObject":{"path":["v2","workflowsteps",":workflowstep_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>steplogs</code>, <code>workflow</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"id":"d0d59496-a9f2-44a2-a5f7-1e44bb22790a","description":{"content":"<p>Workflow step ID</p>\n","type":"text/plain"},"type":"string","value":"{{proximity_workflowstep_id}}","key":"workflowstep_id"}]}},"response":[{"id":"f589bff5-5d4c-463c-8a0d-246472e5fab1","name":"Retrieve a step","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflowsteps/:workflowstep_id?include=","host":["{{base_url}}"],"path":["v2","workflowsteps",":workflowstep_id"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `steplogs`, `workflow`."}],"variable":[{"id":"d0d59496-a9f2-44a2-a5f7-1e44bb22790a","key":"workflowstep_id","value":"{{proximity_workflowstep_id}}","type":"string","description":"Workflow step ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 14 Apr 2022 11:45:14 GMT"},{"key":"Date","value":"Thu, 14 Apr 2022 11:45:14 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xbe27447d0a4a32ac69921761806252ec"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-79EFJNtvjbVrpa1Q6e60GreAhyH8ykuF';style-src 'self' 'nonce-79EFJNtvjbVrpa1Q6e60GreAhyH8ykuF';font-src 'self' data:"},{"key":"Request-Id","value":"f5a1545f-ba74-4401-8ca8-15ba66a1aa8a"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"13\",\n        \"attributes\": {\n            \"prev\": null,\n            \"next\": null,\n            \"type\": \"proximity\",\n            \"options\": {\n                \"command\": \"exivity:gc\",\n                \"arguments\": \"\"\n            },\n            \"timeout\": 600,\n            \"wait\": true\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/13\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/13/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/13/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/13/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/13/steplogs\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"83bbd63b-ed9b-4965-9bd4-5d41393c6bd1"},{"name":"Update a step","event":[{"listen":"test","script":{"id":"68d4016e-9555-46ce-bea1-0cfc722977f8","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowstep');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"execute_workflowstep_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"type\": \"execute\",","        \"sort\": 1,","        \"timeout\": 600","  });","  pm.expect(response.data.attributes.options).to.be.an('object');","  pm.expect(response.data.attributes.options).to.include({\"command\": \"echo \\\"testing\\\"\"});","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"b6d56653-4dc8-429a-894a-689f82f69fff","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireWorkflow)\r","    .then(api.requireWorkflowExecuteStep)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"7225abd8-7f6f-4cc3-bc96-046878e089a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"workflowstep\",\r\n    \"id\": \"{{execute_workflowstep_id}}\",\r\n    \"attributes\": {\r\n      \"options\": {\r\n        \"command\": \"echo \\\"testing\\\"\",\r\n        \"arguments\": \"test\"\r\n      }\r\n    }\r\n  }\r\n}\r\n"},"url":"{{base_url}}/v2/workflowsteps/:workflowstep_id","urlObject":{"path":["v2","workflowsteps",":workflowstep_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"dc729ade-d4b7-47cb-81b0-866faf533f4b","type":"string","value":"{{execute_workflowstep_id}}","key":"workflowstep_id"}]}},"response":[{"id":"521982e1-9a95-4c98-8028-7c84fcdf116c","name":"Update an execute step","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n    \"data\": {\r\n        \"type\": \"workflowstep\",\r\n        \"id\": \"{{execute_workflowstep_id}}\",\r\n        \"attributes\": {\r\n            \"options\": {\r\n                \"command\": \"echo \\\"testing\\\"\",\r\n                \"arguments\": \"test\"\r\n            }\r\n        }\r\n    }\r\n}\r\n"},"url":{"raw":"{{base_url}}/v2/workflowsteps/:workflowstep_id","host":["{{base_url}}"],"path":["v2","workflowsteps",":workflowstep_id"],"variable":[{"id":"dc729ade-d4b7-47cb-81b0-866faf533f4b","key":"workflowstep_id","value":"{{execute_workflowstep_id}}","type":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 12:18:12 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 12:18:12 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xdd04dd4dcc6b37f8be0f445befb6da76"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-8O2PX5zNQFeRJARYIz0QxcoykY2teAxg';style-src 'self' 'nonce-8O2PX5zNQFeRJARYIz0QxcoykY2teAxg';font-src 'self' data:"},{"key":"Request-Id","value":"e269fd55-3b06-46f7-8939-a1ea6dbae65a"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"workflowstep\",\n        \"id\": \"26\",\n        \"attributes\": {\n            \"step_type\": \"execute\",\n            \"options\": {\n                \"command\": \"echo \\\"testing\\\"\"\n            },\n            \"timeout\": 600,\n            \"wait\": true\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/workflowsteps/26\"\n        },\n        \"relationships\": {\n            \"workflow\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/26/relationships/workflow\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/26/workflow\"\n                }\n            },\n            \"steplogs\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/26/relationships/steplogs\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/26/steplogs\"\n                }\n            },\n            \"previous\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/workflowsteps/26/relationships/previous\",\n                    \"related\": \"http://localhost:8012/v2/workflowsteps/26/previous\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"7225abd8-7f6f-4cc3-bc96-046878e089a2"},{"name":"Fetch step logs","event":[{"listen":"test","script":{"id":"b00d03a7-3063-4470-ac62-2442e1745ba3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains logs data\", function () {","    pm.expect(response.logs).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"a09376f9-4da4-4efb-aa74-592e766d1cb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/workflowsteps/:workflowstep_id/logs","urlObject":{"path":["v2","workflowsteps",":workflowstep_id","logs"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"647fe166-cb9f-4bd2-840d-11c0ab47b70c","type":"string","value":"{{workflowstep_id}}","key":"workflowstep_id"}]}},"response":[],"_postman_id":"a09376f9-4da4-4efb-aa74-592e766d1cb9"},{"name":"Delete a step","event":[{"listen":"test","script":{"id":"a15c9978-2e12-418e-bf53-f9090f80c1fa","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET workflowstep_id');","pm.environment.unset(\"workflowstep_id\");","","console.log(\"Go back to running a workflow.\");","postman.setNextRequest(\"Run a workflow\");"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"d9199a94-7426-4f91-b71a-05deb6a37143","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireWorkflow)\r","    .then(api.requireWorkflowExecuteStep)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"11a28e57-6116-414b-b3d6-cd17850c8e71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/workflowsteps/:workflowstep_id","description":"<p>On success, a <code>HTTP 204 No Content success status response</code> will be returned.</p>\n","urlObject":{"path":["v2","workflowsteps",":workflowstep_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"52f2aa95-587a-420f-b737-5462ec46adae","type":"string","value":"{{execute_workflowstep_id}}","key":"workflowstep_id"}]}},"response":[{"id":"fd90f1db-4fe8-47a4-83f0-f097fc12ac95","name":"Delete a step","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/workflowsteps/:workflowstep_id","host":["{{base_url}}"],"path":["v2","workflowsteps",":workflowstep_id"],"variable":[{"id":"52f2aa95-587a-420f-b737-5462ec46adae","key":"workflowstep_id","value":"{{execute_workflowstep_id}}","type":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 05 Sep 2023 12:18:59 GMT"},{"key":"Date","value":"Tue, 05 Sep 2023 12:18:59 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-Clockwork-Id","value":"Xbfc4a4353b577a01824d3a9df2f9e324"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xbfc4a4353b577a01824d3a9df2f9e324"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-9FEo9iW8nHap9hO8w14CeXYZ6ZVymMQT';style-src 'self' 'nonce-9FEo9iW8nHap9hO8w14CeXYZ6ZVymMQT';font-src 'self' data:"},{"key":"Request-Id","value":"c1067928-a2d1-41fc-8369-0f261fd8d781"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"11a28e57-6116-414b-b3d6-cd17850c8e71"}],"id":"807d9f0f-e4b9-4c02-b7e8-6111ec045254","description":"<p>Atomic support: ✔️</p>\n<p>A workflow requires one or more steps. These steps are executed when a workflow is run.</p>\n<h4 id=\"the-workflow-step-object\">The Workflow Step Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>step_type</td>\n<td>enum( <code>extract</code>, <code>transform</code>, <code>prepare_report</code>, <code>execute</code>, <code>proximity</code>, <code>publish_report</code>, <code>evaluate_budget</code> )</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>options</td>\n<td><em>array, values depend on</em> <code>step_type</code></td>\n<td>📝 editable</td>\n<td>Required. Each different <code>step_type</code> has different options, which are documentated in the \"Add a new ... step\" sections.</td>\n</tr>\n<tr>\n<td>timeout</td>\n<td><em>integer</em></td>\n<td>📝 editable</td>\n<td>In seconds, default: 3600,min:1, max:86400</td>\n</tr>\n<tr>\n<td>wait</td>\n<td><em>boolean</em></td>\n<td>📝 editable</td>\n<td>If false, the step will run simultaneously with the previous step.  <br />If true, all previous steps will finish executing before this steps is started.</td>\n</tr>\n<tr>\n<td>prev</td>\n<td><em>integer?</em></td>\n<td>📝 editable</td>\n<td>Number of previous step in workflow. Null if first step.</td>\n</tr>\n<tr>\n<td>next</td>\n<td><em>integer?</em></td>\n<td>📝 editable</td>\n<td>Number of next step in workflow. Null if last step.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>workflow</td>\n<td>hasOne</td>\n<td>workflow</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>steplogs</td>\n<td>hasMany</td>\n<td>workflowsteplog</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d8c2c4a6-f7bc-468e-b8c2-b54757785307","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d611722a-3cb9-49da-b936-d18293b2fec7","type":"text/javascript","exec":[""]}}],"_postman_id":"807d9f0f-e4b9-4c02-b7e8-6111ec045254"},{"name":"/workflowruns","item":[{"name":"Retrieve a list of workflow runs","event":[{"listen":"test","script":{"id":"24fe35a0-1a4c-402e-849c-0c6077174dc3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data[0]).to.be.an('object');","    pm.expect(response.data[0].type).to.eql('workflowrun');","});","","// Set the workflow run ID to the first response ID","pm.environment.set(\"workflowrun_id\", response.data[0].id);","console.log('SET workflowrun_id: ' + pm.environment.get(\"workflowrun_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"78f3c89e-0268-4874-ab38-bef58ea98f8e","exec":["const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.requireWorkflow)","    .then(api.requireWorkflowExecuteStep)","    .then(api.runWorkflow)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"c5ff5a80-0c9b-41fd-b56a-0ff737033137","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowruns?page[limit]=&page[offset]=&sort&filter[attribute]&include=","urlObject":{"path":["v2","workflowruns"],"host":["{{base_url}}"],"query":[{"key":"page[limit]","value":""},{"key":"page[offset]","value":""},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"key":"filter[attribute]","value":null},{"key":"include","value":""}],"variable":[]}},"response":[{"id":"93a45046-b6ce-45dc-a08b-ad898abebc65","name":"Retrieve a list of workflow runs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflowruns?page[limit]=&page[offset]=&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","workflowruns"],"query":[{"key":"page[limit]","value":"","description":"Limit the amount of results returned"},{"key":"page[offset]","value":"","description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `workflow`, `steplogs`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 23 May 2022 06:54:17 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-RujeBWiWjsiRvo5q0cHBRlqqsFoDOmyA';style-src 'self' 'nonce-RujeBWiWjsiRvo5q0cHBRlqqsFoDOmyA';font-src 'self' data:"},{"key":"Request-Id","value":"88061782-7b33-43ec-8cd4-e91675ea7efe"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:46:12Z\",\n                \"end_date\": \"2022-05-23T06:46:13Z\",\n                \"status\": \"failed\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowruns/3\"\n            },\n            \"relationships\": {\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowruns/3/relationships/steplogs\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowruns/3/steplogs\"\n                    }\n                },\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowruns/3/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowruns/3/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:54:16Z\",\n                \"end_date\": \"2022-05-23T06:54:16Z\",\n                \"status\": \"success\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowruns/10\"\n            },\n            \"relationships\": {\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowruns/10/relationships/steplogs\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowruns/10/steplogs\"\n                    }\n                },\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowruns/10/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowruns/10/workflow\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowrun\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:48:28Z\",\n                \"end_date\": \"2022-05-23T06:48:28Z\",\n                \"status\": \"success\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowruns/8\"\n            },\n            \"relationships\": {\n                \"steplogs\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowruns/8/relationships/steplogs\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowruns/8/steplogs\"\n                    }\n                },\n                \"workflow\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowruns/8/relationships/workflow\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowruns/8/workflow\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 3,\n            \"count\": 3,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/workflowruns?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/workflowruns?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/workflowruns?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"c5ff5a80-0c9b-41fd-b56a-0ff737033137"},{"name":"Retrieve a workflow run","event":[{"listen":"test","script":{"id":"26fff38d-997f-4130-ac7c-08c4f19fa014","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('workflowrun');","    pm.expect(response.data.attributes.start_date).to.be.a('string');","    pm.expect(response.data.attributes.end_date).to.be.a('string');","    pm.expect(response.data.attributes.status).to.be.a('string');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f5e5823c-b9ab-47ba-bc77-8c8242ea9edf","exec":[""],"type":"text/javascript"}}],"id":"924bdb68-ed29-4025-bb66-7760c05bd92e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowruns/:workflowrun_id?include=","urlObject":{"path":["v2","workflowruns",":workflowrun_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>steplogs</code>, <code>workflow</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"id":"74ee8b9a-da66-4268-911a-5f2e6922e423","type":"string","value":"{{workflowrun_id}}","key":"workflowrun_id"}]}},"response":[],"_postman_id":"924bdb68-ed29-4025-bb66-7760c05bd92e"}],"id":"ccee36d4-fb7a-45e6-ab6c-d57541cce45b","description":"<p>Atomic support: ❌</p>\n<p>Runs contain workflow status information of workflow runs.</p>\n<h4 id=\"the-workflow-run-object\">The Workflow Run Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n</tr>\n<tr>\n<td>status</td>\n<td><em>enum</em> (<code>started</code>, <code>success</code>, <code>failed</code>, <code>timed_out</code>, <code>invalid</code>, <code>internal_error</code>, <code>killed</code>)</td>\n<td>👁 read-only</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>workflow</td>\n<td>hasOne</td>\n<td>workflow</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>steplogs</td>\n<td>hasMany</td>\n<td>workflowsteplog</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"cb83b8f4-ebee-410f-8762-abd54ca391a6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b0f5f4d3-988a-4948-9274-c6ecfc8246fb","type":"text/javascript","exec":[""]}}],"_postman_id":"ccee36d4-fb7a-45e6-ab6c-d57541cce45b"},{"name":"/workflowsteplogs","item":[{"name":"Retrieve a list of workflow step logs","event":[{"listen":"prerequest","script":{"id":"3e4fdc31-2d25-4f36-8e84-73cdac7871f9","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireWorkflow)\r","    .then(api.requireWorkflowExecuteStep)\r","    .then(api.runWorkflow)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}},{"listen":"test","script":{"id":"841c835a-2b22-45c0-8633-078f2347d591","exec":["// Since running a workflow is an async process, so we can't know","// for sure that a workflowsteplog has any info, so just check for a basic valid format","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","    if (response.data.length > 0 ) {","        // We have some results to validate","        pm.expect(response.data[0]).to.be.an('object');","        pm.expect(response.data[0].type).to.eql('workflowsteplog');","        ","        pm.environment.set(\"workflowsteplog_id\", response.data[0].id);","        console.log('SET workflowsteplog_id: ' + pm.environment.get(\"workflowsteplog_id\"));","    }","});","pm.test(\"Response contains meta\", function () {","    pm.expect(response.meta).to.be.an('object');","});",""],"type":"text/javascript"}}],"id":"60ef2fe8-fbbb-4f9c-a8a7-79d8bd2a9c0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowsteplogs?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","workflowsteplogs"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>run</code>, <code>step</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"4eea970e-6461-491b-b423-a6e6451f2599","name":"Retrieve a list of workflow step logs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/workflowsteplogs?page[limit]&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","workflowsteplogs"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `run`, `step`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 23 May 2022 07:13:43 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-QfPEvVq2HCmOaUhywXQ08DE5HP6IUpF4';style-src 'self' 'nonce-QfPEvVq2HCmOaUhywXQ08DE5HP6IUpF4';font-src 'self' data:"},{"key":"Request-Id","value":"58797ee7-480f-484a-bf82-8df4382a8c68"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"workflowsteplog\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:46:12Z\",\n                \"end_date\": \"2022-05-23T06:46:15Z\",\n                \"status\": \"success\",\n                \"exit_code\": 0,\n                \"log\": \"{\\\"job_id\\\": 4, \\\"params\\\": \\\"common/pigeon/pigeon.phar command:run publish_report \\\\\\\"{ \\\\\\\\\\\\\\\"report_id\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"*\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"date\\\\\\\\\\\\\\\":20220523 }\\\\\\\"\\\", \\\"timeout\\\": 1800, \\\"to_date\\\": 20220523, \\\"user_id\\\": \\\"chronos\\\", \\\"from_date\\\": 20220523}\",\n                \"output\": \"{\\\"message\\\":\\\"Command finished successfully\\\"}\\r\\n\",\n                \"logfile\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/4\"\n            },\n            \"relationships\": {\n                \"step\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/4/relationships/step\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/4/step\"\n                    }\n                },\n                \"run\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/4/relationships/run\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/4/run\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowsteplog\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:46:12Z\",\n                \"end_date\": \"2022-05-23T06:46:16Z\",\n                \"status\": \"success\",\n                \"exit_code\": 0,\n                \"log\": \"{\\\"job_id\\\": 5, \\\"params\\\": \\\"common/pigeon/pigeon.phar command:run evaluate_budget \\\\\\\"{ \\\\\\\\\\\\\\\"budget_id\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"*\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"date\\\\\\\\\\\\\\\":20220523 }\\\\\\\"\\\", \\\"timeout\\\": 10800, \\\"to_date\\\": 20220523, \\\"user_id\\\": \\\"chronos\\\", \\\"from_date\\\": 20220523}\",\n                \"output\": \"{\\\"message\\\":\\\"Command finished successfully\\\"}\\r\\n\",\n                \"logfile\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/5\"\n            },\n            \"relationships\": {\n                \"step\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/5/relationships/step\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/5/step\"\n                    }\n                },\n                \"run\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/5/relationships/run\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/5/run\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowsteplog\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:46:12Z\",\n                \"end_date\": \"2022-05-23T06:46:12Z\",\n                \"status\": \"success\",\n                \"exit_code\": 0,\n                \"log\": \"{\\\"job_id\\\": 6, \\\"params\\\": \\\"/C exit 0\\\", \\\"program\\\": \\\"cmd.exe\\\", \\\"timeout\\\": 60, \\\"to_date\\\": 20220523, \\\"user_id\\\": \\\"chronos\\\", \\\"from_date\\\": 20220523}\",\n                \"output\": \"\",\n                \"logfile\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/6\"\n            },\n            \"relationships\": {\n                \"step\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/6/relationships/step\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/6/step\"\n                    }\n                },\n                \"run\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/6/relationships/run\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/6/run\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowsteplog\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:46:12Z\",\n                \"end_date\": \"2022-05-23T06:46:13Z\",\n                \"status\": \"failed\",\n                \"exit_code\": 1,\n                \"log\": \"{\\\"job_id\\\": 7, \\\"params\\\": \\\"--script \\\\\\\"dummy-transformer.trs\\\\\\\" --start_date 20220519 --end_date 20220522  --log \\\\\\\"dummy-transformer_scheduled_20220523-064612.log\\\\\\\"\\\", \\\"timeout\\\": 1800, \\\"to_date\\\": 20220522, \\\"user_id\\\": \\\"chronos\\\", \\\"from_date\\\": 20220519}\",\n                \"output\": \"{\\r\\n \\\"status\\\": \\\"failure\\\",\\r\\n \\\"message\\\": \\\"Import of file 'system/extracted/2022/05/19_usage.csv' failed - aborted\\\",\\r\\n \\\"stack\\\": [{\\r\\n   \\\"filename\\\": \\\"dummy-transformer.trs\\\",\\r\\n   \\\"line\\\": 1\\r\\n  }],\\r\\n \\\"start_time\\\": \\\"20220523 06:46:12.897\\\",\\r\\n \\\"end_time\\\": \\\"20220523 06:46:12.954\\\"\\r\\n}\\r\\n\",\n                \"logfile\": \"dummy-transformer_scheduled_20220523-064612.log\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/7\"\n            },\n            \"relationships\": {\n                \"step\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/7/relationships/step\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/7/step\"\n                    }\n                },\n                \"run\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/7/relationships/run\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/7/run\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowsteplog\",\n            \"id\": \"13\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T07:13:42Z\",\n                \"end_date\": \"2022-05-23T07:13:42Z\",\n                \"status\": \"success\",\n                \"exit_code\": 0,\n                \"log\": \"{\\\"job_id\\\": 13, \\\"params\\\": \\\"\\\\\\\"testing\\\\\\\"\\\", \\\"program\\\": \\\"echo\\\", \\\"timeout\\\": 600, \\\"to_date\\\": 20220523, \\\"user_id\\\": \\\"d0e8afb0-852c-4acd-bf59-afe7247a25b8\\\", \\\"from_date\\\": 20220523}\",\n                \"output\": \"testing\\r\\n\",\n                \"logfile\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/13\"\n            },\n            \"relationships\": {\n                \"step\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/13/relationships/step\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/13/step\"\n                    }\n                },\n                \"run\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/13/relationships/run\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/13/run\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowsteplog\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:54:16Z\",\n                \"end_date\": \"2022-05-23T06:54:16Z\",\n                \"status\": \"success\",\n                \"exit_code\": 0,\n                \"log\": \"{\\\"job_id\\\": 11, \\\"params\\\": \\\"\\\\\\\"testing\\\\\\\"\\\", \\\"program\\\": \\\"echo\\\", \\\"timeout\\\": 600, \\\"to_date\\\": 20220523, \\\"user_id\\\": \\\"d0e8afb0-852c-4acd-bf59-afe7247a25b8\\\", \\\"from_date\\\": 20220523}\",\n                \"output\": \"testing\\r\\n\",\n                \"logfile\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/11\"\n            },\n            \"relationships\": {\n                \"step\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/11/relationships/step\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/11/step\"\n                    }\n                },\n                \"run\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/11/relationships/run\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/11/run\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"workflowsteplog\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"start_date\": \"2022-05-23T06:48:28Z\",\n                \"end_date\": \"2022-05-23T06:48:28Z\",\n                \"status\": \"success\",\n                \"exit_code\": 0,\n                \"log\": \"{\\\"job_id\\\": 9, \\\"params\\\": \\\"\\\\\\\"testing\\\\\\\"\\\", \\\"program\\\": \\\"echo\\\", \\\"timeout\\\": 600, \\\"to_date\\\": 20220523, \\\"user_id\\\": \\\"d0e8afb0-852c-4acd-bf59-afe7247a25b8\\\", \\\"from_date\\\": 20220523}\",\n                \"output\": \"testing\\r\\n\",\n                \"logfile\": \"\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/9\"\n            },\n            \"relationships\": {\n                \"step\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/9/relationships/step\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/9/step\"\n                    }\n                },\n                \"run\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs/9/relationships/run\",\n                        \"related\": \"https://dev.exivity.net/v2/workflowsteplogs/9/run\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 7,\n            \"count\": 7,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/workflowsteplogs?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/workflowsteplogs?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/workflowsteplogs?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"60ef2fe8-fbbb-4f9c-a8a7-79d8bd2a9c0f"},{"name":"Retrieve a workflow step log","event":[{"listen":"test","script":{"id":"2bed085c-969e-4000-9a2c-8bacc08eb224","exec":["// Since running a workflow is an async process, so we can't know","// for sure that a workflowsteplog has any info, so just check for a basic valid format","","pm.test(\"Check status code\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200,404]);","});","","const response = pm.response.json();","console.log(response)","","if (pm.response.code == 200) {","    // Valid workflow step log ID","    pm.test(\"Response contains correct data\", function () {","        pm.expect(response.data).to.be.an('object');","        pm.expect(response.data.type).to.eql('workflowsteplog');","    });","    ","} else {","    // Invalid ID, should get error","     pm.test(\"Response contains correct error\", function () {","        pm.expect(response.errors).to.be.an('array');","        pm.expect(response.errors[0]).to.be.an('object');","        pm.expect(response.errors[0].title).to.eql('NotFoundException');","        pm.expect(response.errors[0].detail).to.eql('WorkflowStepLog could not be found.');","        pm.expect(response.errors[0].status).to.eql(404);","    });","}","","console.log(\"Workflow can be deleted now. Continue with Detele a workflow\");","postman.setNextRequest(\"Delete a workflow\");"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e9c9dc6c-b4eb-4fc4-8e80-e0af2128ecd2","exec":[""],"type":"text/javascript"}}],"id":"167a19ae-3cde-4269-ac0c-71a6104c31bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/workflowsteplogs/:workflowsteplog_id?include=","urlObject":{"path":["v2","workflowsteplogs",":workflowsteplog_id"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>run</code>, <code>step</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[{"id":"e5fd82d9-2c4b-412a-a651-3f876996ab5e","type":"string","value":"{{workflowsteplog_id}}","key":"workflowsteplog_id"}]}},"response":[],"_postman_id":"167a19ae-3cde-4269-ac0c-71a6104c31bf"}],"id":"f1888093-edec-42a5-ba39-7f2130faaf58","description":"<p>Atomic support: ❌</p>\n<p>A steplog contains information about a workflowstep that ran.</p>\n<h4 id=\"the-workflow-steplog-object\">The Workflow Steplog Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><em>datetime</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td><em>enum</em> (<code>started</code>, <code>success</code>, <code>failed</code>, <code>timed_out</code>, <code>invalid</code>, <code>internal_error</code>, <code>killed</code>)</td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>exit_code</td>\n<td><em>integer</em></td>\n<td>👁 read-only</td>\n<td>0 or 1</td>\n</tr>\n<tr>\n<td>log</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>output</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>logfile</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>run</td>\n<td>hasOne</td>\n<td>workflowrun</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>step</td>\n<td>hasOne</td>\n<td>workflowstep</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"fc1698ca-81c8-40a3-ace8-a389c6395476","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c2aae1f4-3843-4dea-82a3-d5c938d9012a","type":"text/javascript","exec":[""]}}],"_postman_id":"f1888093-edec-42a5-ba39-7f2130faaf58"},{"name":"/jobs","item":[{"name":"Retrieve a list of jobs","event":[{"listen":"test","script":{"id":"08292015-685f-409c-ae28-f64a21c2d650","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript","packages":{}}}],"id":"acf6b7de-a79a-44be-afdb-d5bb4ab779ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/jobs?filter[attribute]=","urlObject":{"path":["v2","jobs"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Filter results by this attribute.</p>\n","type":"text/plain"},"key":"filter[attribute]","value":""}],"variable":[]}},"response":[{"id":"273c253b-8711-4dcb-9a35-21376997ae2f","name":"Retrieve a list of jobs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/jobs?filter[attribute]=","host":["{{base_url}}"],"path":["v2","jobs"],"query":[{"key":"filter[attribute]","value":"","description":"Filter results by this attribute."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 11 Oct 2022 14:22:54 GMT"},{"key":"Date","value":"Tue, 11 Oct 2022 14:22:54 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X646eabcd09f5835f0f709e6c764dffdc"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-1dNnHl0muGvLZQluqti348zCpB9Wj1z6';style-src 'self' 'nonce-1dNnHl0muGvLZQluqti348zCpB9Wj1z6';font-src 'self' data:"},{"key":"Request-Id","value":"7bba2ec6-20c6-4cc0-8d8c-7c8a07295f5a"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"job\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"user_id\": \"\",\n                \"status\": \"failed\",\n                \"start_date\": \"2022-09-29T07:21:14Z\",\n                \"end_date\": \"2022-09-29T07:21:14Z\",\n                \"job_type\": \"extract\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v1/jobs/2\"\n            }\n        },\n        {\n            \"type\": \"job\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"user_id\": \"f68c6888-46a9-41bd-ae5a-03b81a53d933\",\n                \"status\": \"failed\",\n                \"start_date\": \"2022-09-29T07:21:14Z\",\n                \"end_date\": \"2022-09-29T07:21:14Z\",\n                \"job_type\": null\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v1/jobs/1\"\n            }\n        },\n        {\n            \"type\": \"job\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"user_id\": \"\",\n                \"status\": \"failed\",\n                \"start_date\": \"2022-09-29T07:21:15Z\",\n                \"end_date\": \"2022-09-29T07:21:15Z\",\n                \"job_type\": \"extract\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v1/jobs/4\"\n            }\n        },\n        {\n            \"type\": \"job\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"user_id\": \"f68c6888-46a9-41bd-ae5a-03b81a53d933\",\n                \"status\": \"failed\",\n                \"start_date\": \"2022-09-29T07:21:15Z\",\n                \"end_date\": \"2022-09-29T07:21:15Z\",\n                \"job_type\": null\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v1/jobs/3\"\n            }\n        },\n        {\n            \"type\": \"job\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"user_id\": \"\",\n                \"status\": \"failed\",\n                \"start_date\": \"2022-09-29T07:21:17Z\",\n                \"end_date\": \"2022-09-29T07:21:17Z\",\n                \"job_type\": \"extract\"\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v1/jobs/6\"\n            }\n        },\n        {\n            \"type\": \"job\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"user_id\": \"f68c6888-46a9-41bd-ae5a-03b81a53d933\",\n                \"status\": \"failed\",\n                \"start_date\": \"2022-09-29T07:21:17Z\",\n                \"end_date\": \"2022-09-29T07:21:17Z\",\n                \"job_type\": null\n            },\n            \"links\": {\n                \"self\": \"http://localhost:8012/v1/jobs/5\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 6,\n            \"count\": 6,\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"http://localhost:8012/v1/jobs?filter%5Battribute%5D=&page%5Boffset%5D=1\",\n        \"first\": \"http://localhost:8012/v1/jobs?filter%5Battribute%5D=&page%5Boffset%5D=1\",\n        \"last\": \"http://localhost:8012/v1/jobs?filter%5Battribute%5D=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"acf6b7de-a79a-44be-afdb-d5bb4ab779ce"},{"name":"Add a new job","event":[{"listen":"test","script":{"id":"138c7138-89e8-41d7-98c5-af13c74b7615","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('job');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.include({","        \"job_type\": \"extract\"","  });","    pm.expect(response.data.attributes.status).to.be.a('string');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"job_id\", response.data.id);","console.log('SET job_id: ' + pm.environment.get(\"job_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e685c260-0a1e-4e10-93db-4e22b94d2cfd","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"09702c80-6d9c-48d5-b23e-6bfaf015463b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"job\",\r\n    \t\"attributes\": {\r\n            \"job_type\": \"prepare_report\",\r\n            \"options\": {\r\n                \"report_id\": \"{{report_id}}\",\r\n                \"start_date\": null,\r\n                \"end_date\": null\r\n            }\r\n    \t}\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/jobs","urlObject":{"path":["v2","jobs"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"46d314a8-5839-42cb-8dc7-8640344b985b","name":"Add extract job","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"job\",\r\n    \t\"attributes\": {\r\n            \"job_type\": \"extract\",\r\n            \"options\": {\r\n                \"extractor_name\": \"{{extractor_name}}\"\r\n            }\r\n    \t}\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/jobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Location","value":"http://localhost:8012/v2/Job/Jobs"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 07 May 2024 08:40:56 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X21a8588465dbf7f1722bf77566227b6b"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-1tFaDvqeoJ9wZeNJYaq3lGVRLiQrTtpJ';style-src 'self' 'nonce-1tFaDvqeoJ9wZeNJYaq3lGVRLiQrTtpJ';font-src 'self' data:"},{"key":"Request-Id","value":"10addda3-2d02-4ee8-a1b1-37647d1c3927"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"job\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"job_type\": \"extract\",\n            \"status\": \"running\",\n            \"start_datetime\": \"2024-05-07T08:40:56Z\",\n            \"end_datetime\": null,\n            \"timeout\": 0,\n            \"options\": {\n                \"extractor_name\": \"Extractor_test_-_27.use\",\n                \"arguments\": null,\n                \"environment_id\": null\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/jobs/9\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/jobs/9/relationships/user\",\n                    \"related\": \"http://localhost:8012/v2/jobs/9/user\"\n                }\n            }\n        }\n    }\n}"},{"id":"a8e21ba8-3103-4aa6-9a86-466b31c4c3b3","name":"Add prepare report job","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"job\",\r\n    \t\"attributes\": {\r\n    \t\t\"job_type\": \"prepare_report\",\r\n            \"options\": {\r\n                \"report_id\": \"{{report_id}}\",\r\n                \"start_date\": null,\r\n                \"end_date\": null\r\n            }\r\n    \t}\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/jobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 23 May 2022 14:49:23 GMT"},{"key":"Date","value":"Mon, 23 May 2022 14:49:23 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/Job/Jobs"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X37afc407b9006dd3076e20d01bbafe2e"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-5o3aFnYGqccuzNDd38aqGfAoEwZtcB0m';style-src 'self' 'nonce-5o3aFnYGqccuzNDd38aqGfAoEwZtcB0m';font-src 'self' data:"},{"key":"Request-Id","value":"d091d0d9-fb97-460a-a3ab-3c7c21626710"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"job\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"status\": \"running\",\n            \"start_datetime\": \"2023-11-06T10:16:42Z\",\n            \"end_datetime\": null,\n            \"job_type\": \"prepare_report\",\n            \"timeout\": 0,\n            \"options\": {\n                \"report_id\": \"1\",\n                \"start_date\": \"2023-11-06\",\n                \"end_date\": \"2023-11-06\"\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/jobs/9\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/jobs/9/relationships/user\",\n                    \"related\": \"http://localhost:8012/v2/jobs/9/user\"\n                }\n            }\n        }\n    }\n}"},{"id":"bd68e523-43a0-47e4-9666-81718878597d","name":"Add transform job","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"job\",\r\n    \t\"attributes\": {\r\n    \t\t\"job_type\": \"transform\",\r\n            \"options\": {\r\n                \"transformer_name\": \"{{transformer_name}}\",\r\n                \"start_date\": null,\r\n                \"end_date\": null,\r\n                \"date\": null\r\n            }\r\n    \t}\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/jobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 06 Nov 2023 11:29:04 GMT"},{"key":"Date","value":"Mon, 06 Nov 2023 11:29:04 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/v2/Job/Jobs"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X7cb1f634501c919d959e8ce4ba11df02"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-nae6j6e8lTjfewaGZpGOxiiJwURnPfui';style-src 'self' 'nonce-nae6j6e8lTjfewaGZpGOxiiJwURnPfui';font-src 'self' data:"},{"key":"Request-Id","value":"ec1fd179-3104-4d02-ab39-0fcbeebb9754"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"job\",\n        \"id\": \"16\",\n        \"attributes\": {\n            \"job_type\": \"transform\",\n            \"status\": \"running\",\n            \"start_datetime\": \"2023-11-06T11:29:04Z\",\n            \"end_datetime\": null,\n            \"timeout\": 0,\n            \"options\": {\n                \"transformer_name\": \"Transformer_test_69.trs\",\n                \"environment_id\": null,\n                \"start_date\": null,\n                \"end_date\": null,\n                \"date\": \"2023-11-06\"\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v2/jobs/16\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/v2/jobs/16/relationships/user\",\n                    \"related\": \"http://localhost:8012/v2/jobs/16/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"09702c80-6d9c-48d5-b23e-6bfaf015463b"},{"name":"Retrieve a job","event":[{"listen":"test","script":{"id":"08292015-685f-409c-ae28-f64a21c2d650","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript","packages":{}}}],"id":"53d2347a-4bb0-47bf-9cba-504ad209c790","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/jobs/:job_id?include=log","urlObject":{"path":["v2","jobs",":job_id"],"host":["{{base_url}}"],"query":[{"key":"include","value":"log"}],"variable":[{"type":"any","value":"{{job_id}}","key":"job_id"}]}},"response":[{"id":"951002fc-ac7e-488a-8c69-1556d185c57e","name":"Retrieve a job","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/jobs/:job_id","host":["{{base_url}}"],"path":["v2","jobs",":job_id"],"variable":[{"id":"00310810-0289-443a-b09a-dc1c4a9e928e","key":"job_id","value":"{{job_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 11 Oct 2022 14:31:13 GMT"},{"key":"Date","value":"Tue, 11 Oct 2022 14:31:13 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X0081f1085bfc96f95a8070da04acafa7"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-y0I1ThEGCzz3WdrGB7MRnuBy3ueo4AwA';style-src 'self' 'nonce-y0I1ThEGCzz3WdrGB7MRnuBy3ueo4AwA';font-src 'self' data:"},{"key":"Request-Id","value":"36f22853-1972-4cf2-930c-6711475ba759"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"job\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"user_id\": \"\",\n            \"status\": \"failed\",\n            \"start_date\": \"2022-09-29T07:21:14Z\",\n            \"end_date\": \"2022-09-29T07:21:14Z\",\n            \"job_type\": \"extract\"\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/v1/jobs/2\"\n        }\n    }\n}"}],"_postman_id":"53d2347a-4bb0-47bf-9cba-504ad209c790"}],"id":"c670d0f2-38f0-49c7-9613-f59aead44ff9","description":"<p>Atomic support: ✔️</p>\n<p>Jobs are long-running processes, running in the background.</p>\n<h4 id=\"the-job-object\">The Job Object</h4>\n<h5 id=\"generic-variables\">Generic variables</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>job_type</td>\n<td><em>enum</em> (<code>extract</code>, <code>prepare_report</code>, <code>transform</code>)</td>\n<td>🔏 immutable</td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td><em>enum</em> (<code>not_started</code>, <code>running</code>, <code>succeed</code>, <code>failed</code>, <code>timeout</code>, <code>error_format</code>, <code>error_cannot_run</code>, <code>killed</code>)</td>\n<td>👁 read-only</td>\n<td><code>error_format</code> - message format error in run command (indicates internal error).  <br /><code>error_cannot_run</code> - process cannot be executed (typically - executable wasn't found).  <br /><code>killed</code> - rocess was killed on receipt of kill command</td>\n</tr>\n<tr>\n<td>start_datetime</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td>Date, format: Y-m-d\\TH:i:s\\Z</td>\n</tr>\n<tr>\n<td>end_datetime</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td>Date, format: Y-m-d\\TH:i:s\\Z</td>\n</tr>\n<tr>\n<td>timeout</td>\n<td><em>integer</em></td>\n<td>👁 read-only</td>\n<td>In seconds. Default: 86400 (one day).</td>\n</tr>\n<tr>\n<td>options</td>\n<td><em>array</em></td>\n<td></td>\n<td>Input depends on <code>job_type</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"extract-job-options\">Extract job options</h5>\n<p>This job will be handled by the Use backend component.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>extractor_name</td>\n<td><em>string</em></td>\n<td>🔏 immutable</td>\n</tr>\n<tr>\n<td>arguments</td>\n<td><em>string?</em></td>\n<td>🔏 immutable</td>\n</tr>\n<tr>\n<td>environment_id</td>\n<td><em>integer?</em></td>\n<td>🔏 immutable</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"prepare-report-job-options\">Prepare report job options</h5>\n<p>This job will be handled by the Edify backend component.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>report_id</td>\n<td><em>string</em></td>\n<td>🔏 immutable</td>\n<td></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><em>date?</em></td>\n<td>🔏 immutable</td>\n<td>Format: Y-m-d</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><em>date?</em></td>\n<td>🔏 immutable</td>\n<td>Format: Y-m-d</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"transform-job-options\">Transform job options</h5>\n<p>This job will be handled by the Transcript backend component.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transformer_name</td>\n<td><em>string</em></td>\n<td>🔏 immutable</td>\n<td></td>\n</tr>\n<tr>\n<td>environment_id</td>\n<td><em>integer?</em></td>\n<td>🔏 immutable</td>\n<td></td>\n</tr>\n<tr>\n<td>start_date</td>\n<td><em>date?</em></td>\n<td>🔏 immutable</td>\n<td>Format: Y-m-d</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td><em>date?</em></td>\n<td>🔏 immutable</td>\n<td>Format: Y-m-d</td>\n</tr>\n<tr>\n<td>date</td>\n<td><em>date?</em></td>\n<td>🔏 immutable</td>\n<td>Format: Y-m-d</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c670d0f2-38f0-49c7-9613-f59aead44ff9"}],"id":"0f7982be-f248-4da5-bafd-f898ba3f02e7","event":[{"listen":"prerequest","script":{"id":"5c405237-9db3-4d39-94e9-4655192ce527","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1ee0ce50-9cb9-481a-9013-c60923713415","type":"text/javascript","exec":[""]}}],"_postman_id":"0f7982be-f248-4da5-bafd-f898ba3f02e7","description":""},{"name":"Profile","item":[{"name":"/notificationchannels","item":[{"name":"Get all notification channels","event":[{"listen":"test","script":{"id":"35dece05-a534-4451-b1d4-11768ff68334","exec":["pm.test(\"Status code is 200\", function () {","     pm.response.to.have.status(200);"," });","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","     pm.expect(response.data).to.be.an('array');","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f4433dee-e858-48bc-b929-6bf16fc115dc","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"74720957-6e5f-4199-bbb6-d71b3e3a2f6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/notificationchannels?include=","urlObject":{"path":["v2","notificationchannels"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Possible values: <code>notificationsubscriptions</code>, <code>user</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"1ad80cf3-4d8e-412c-a265-884ca87bbb8b","name":"Get all notification channels","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/notificationchannels?include=","host":["{{base_url}}"],"path":["v2","notificationchannels"],"query":[{"key":"include","value":"","description":"Possible values: `notificationsubscriptions`, `user`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 09:54:21 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-GvIgV05yGmY5eAGTPm1ZGnSGVp97geKa';style-src 'self' 'nonce-GvIgV05yGmY5eAGTPm1ZGnSGVp97geKa';font-src 'self' data:"},{"key":"Request-Id","value":"75360492-4921-41f1-9d61-c1a06888eefa"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"notificationchannel\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"E-mails for someone\",\n                \"type\": \"mail\",\n                \"info\": {\n                    \"recipient\": \"someone@exivity.com\",\n                    \"cc\": \"someoneelse@exivity.com\"\n                }\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/notificationchannels/1\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/1/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/1/user\"\n                    }\n                },\n                \"subscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/1/relationships/subscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/1/subscriptions\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/1/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/1/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"notificationchannel\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"name\": \"E-mails for someone with cc\",\n                \"type\": \"mail\",\n                \"info\": {\n                    \"recipient\": \"someone@exivity.com\",\n                    \"cc\": [\n                        \"someoneelse@exivity.com\"\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/notificationchannels/2\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/2/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/2/user\"\n                    }\n                },\n                \"subscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/2/relationships/subscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/2/subscriptions\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/2/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/2/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"notificationchannel\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"name\": \"Webhook\",\n                \"type\": \"webhook\",\n                \"info\": {\n                    \"recipient\": \"https://api.exivity.com/webhook\"\n                }\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/notificationchannels/3\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/3/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/3/user\"\n                    }\n                },\n                \"subscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/3/relationships/subscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/3/subscriptions\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/3/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/3/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"notificationchannel\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"name\": \"Database channel\",\n                \"type\": \"database\",\n                \"info\": null\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/notificationchannels/7\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/user\"\n                    }\n                },\n                \"subscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/subscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/subscriptions\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/notificationsubscriptions\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 4,\n            \"count\": 4,\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/notificationchannels?include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/notificationchannels?include=&page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/notificationchannels?include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"74720957-6e5f-4199-bbb6-d71b3e3a2f6d"},{"name":"Create a new channel","event":[{"listen":"test","script":{"id":"57ec81b5-d6a6-41dc-a8b4-49eefaefffdb","exec":["pm.test(\"Status code is 201\", function () {","     pm.response.to.have.status(201);"," });","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('notificationchannel');","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.info.recipient).to.be.a('string');","    pm.expect(response.data.attributes.name).to.be.a('string');","    pm.expect(response.data.attributes.type).to.be.an('string');","    pm.expect(response.data.attributes.info.recipient).to.be.a('string');","});","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"notification_channel_id\", response.data.id);","console.log('SET notification_channel_id: ' + pm.environment.get(\"notification_channel_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"de4cadd7-9784-45ed-ba13-0c254d736f72","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"791e3e4c-f099-4bfa-8cc8-ee45407af932","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationchannel\",\n        \"attributes\": {\n            \"type\": \"mail\",\n            \"name\": \"E-mail for someone\",\n            \"info\": {\n            \t\"recipient\": \"someone@exivity.com\"\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}\n"},"url":"{{base_url}}/v2/notificationchannels","urlObject":{"path":["v2","notificationchannels"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"26eb76e7-a4b2-4652-8e15-df3f79094de4","name":"Slack channel (slack)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationchannel\",\n        \"attributes\": {\n            \"type\": \"slack\",\n            \"name\": \"My slack channel\",\n            \"info\": {\n            \t\"recipient\": \"https://hooks.slack.com/services/abc123def456ghi789jkl\"\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}\n"},"url":"{{base_url}}/v1/notificationchannels"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Wed, 03 Jul 2019 08:30:32 GMT"},{"key":"Date","value":"Wed, 03 Jul 2019 08:30:32 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.3.6"},{"key":"Location","value":"https://localhost:8012/v1/notificationchannel/5"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xe5f83c7faa917c5a431a80222d484915"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"Access-Control-Allow-Origin","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationchannel\",\n        \"id\": \"7\",\n        \"attributes\": {\n            \"name\": \"My slack channel\",\n            \"type\": \"slack\",\n            \"info\": {\n                \"recipient\": \"https://hooks.slack.com/services/abc123def456ghi789jkl\"\n            }\n        },\n        \"links\": {\n            \"self\": \"https://localhost:8012/v1/notificationchannels/7\"\n        }\n    }\n}"},{"id":"7b09d978-3281-48ec-b36a-f798bed82e0b","name":"Email address (mail)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationchannel\",\n        \"attributes\": {\n            \"type\": \"mail\",\n            \"name\": \"E-mail for someone\",\n            \"info\": {\n            \t\"recipient\": \"someone@example.com\"\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}\n"},"url":"{{base_url}}/v1/notificationchannels"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Wed, 03 Jul 2019 08:33:12 GMT"},{"key":"Date","value":"Wed, 03 Jul 2019 08:33:12 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.3.6"},{"key":"Location","value":"https://localhost:8012/v1/notificationchannel/6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"X4b3994622abc5d8598b15611f3474780"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"Access-Control-Allow-Origin","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationchannel\",\n        \"id\": \"6\",\n        \"attributes\": {\n            \"name\": \"E-mail for someone\",\n            \"type\": \"mail\",\n            \"info\": {\n                \"recipient\": \"someone@example.com\",\n                \"cc\": null,\n                \"bcc\": null\n            }\n        },\n        \"links\": {\n            \"self\": \"https://localhost:8012/v1/notificationchannels/6\"\n        }\n    }\n}"},{"id":"bc92b3da-bbb7-4e68-aabb-3043f6241c5e","name":"Phone number (nexmo)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationchannel\",\n        \"attributes\": {\n            \"type\": \"nexmo\",\n            \"name\": \"My phone number\",\n            \"info\": {\n            \t\"recipient\": \"+123456789\"\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}\n"},"url":"{{base_url}}/v1/notificationchannels"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Wed, 03 Jul 2019 08:30:32 GMT"},{"key":"Date","value":"Wed, 03 Jul 2019 08:30:32 GMT"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/7.3.6"},{"key":"Location","value":"https://localhost:8012/v1/notificationchannel/5"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-Clockwork-Id","value":"Xe5f83c7faa917c5a431a80222d484915"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"Access-Control-Allow-Origin","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationchannel\",\n        \"id\": \"5\",\n        \"attributes\": {\n            \"name\": \"My phone number\",\n            \"type\": \"nexmo\",\n            \"info\": {\n                \"recipient\": \"+31639385508\"\n            }\n        },\n        \"links\": {\n            \"self\": \"https://localhost:8012/v1/notificationchannels/5\"\n        }\n    }\n}"},{"id":"13beb5ea-dec7-49ae-9e0c-f225861fcf90","name":"Webhook (webhook)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationchannel\",\n        \"attributes\": {\n            \"type\": \"webhook\",\n            \"name\": \"Webhook headers\",\n            \"info\": {\n            \t\"recipient\": \"https://api.exivity.com/webhook\",\n                \"headers\": [{\"Authorization\": \"Bearer 6sdlgf34583475\"}],\n                \"tls_verification\": false,\n                \"include_attachments\": false\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}\n"},"url":"{{base_url}}/v2/notificationchannels"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 09:50:34 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/NotificationChannel/NotificationChannels"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-6KVAneszKH7RgnC8EL7X3f4G0jEDHFkO';style-src 'self' 'nonce-6KVAneszKH7RgnC8EL7X3f4G0jEDHFkO';font-src 'self' data:"},{"key":"Request-Id","value":"805c0d0d-bed0-4747-8639-02aa789d1a7b"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationchannel\",\n        \"id\": \"6\",\n        \"attributes\": {\n            \"name\": \"Webhook\",\n            \"type\": \"webhook\",\n            \"info\": {\n                \"recipient\": \"https://api.exivity.com/webhook\",\n                \"headers\": [\n                    {\n                        \"Authorization\": \"Bearer 6sdlgf34583475\"\n                    }\n                ],\n                \"tls_verification\": false,\n                \"include_attachments\": false\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/notificationchannels/6\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/6/relationships/user\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/6/user\"\n                }\n            },\n            \"subscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/6/relationships/subscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/6/subscriptions\"\n                }\n            },\n            \"notificationsubscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/6/relationships/notificationsubscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/6/notificationsubscriptions\"\n                }\n            }\n        }\n    }\n}"},{"id":"69eeeb1d-7f19-4d8f-95c1-eebb7937944a","name":"DB channel (database)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"Content-Type","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationchannel\",\n        \"attributes\": {\n            \"type\": \"database\",\n            \"name\": \"Database channel\"\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}\n"},"url":"{{base_url}}/v2/notificationchannels"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 09:52:43 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/NotificationChannel/NotificationChannels"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-wN7AELlFFlRrSnUYNstJfJRNwUUq1ej1';style-src 'self' 'nonce-wN7AELlFFlRrSnUYNstJfJRNwUUq1ej1';font-src 'self' data:"},{"key":"Request-Id","value":"fc89da9b-44df-4c41-9369-49e1fe6ee176"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationchannel\",\n        \"id\": \"7\",\n        \"attributes\": {\n            \"name\": \"Database channel\",\n            \"type\": \"database\",\n            \"info\": null\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/notificationchannels/7\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/user\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/user\"\n                }\n            },\n            \"subscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/subscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/subscriptions\"\n                }\n            },\n            \"notificationsubscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/notificationsubscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/notificationsubscriptions\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"791e3e4c-f099-4bfa-8cc8-ee45407af932"},{"name":"Get a channel","event":[{"listen":"test","script":{"id":"c2f7044b-3e64-44d4-bdce-d697af9f52b2","exec":["// Status","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Json body","pm.test(\"Response has a valid JSON body\", function () {","     pm.response.to.be.withBody;","     pm.response.to.be.json;","});","","// Check Json","var jsonData = pm.response.json();","console.log(jsonData);","pm.test(\"Response has valid attributes\", function() {","    pm.expect(jsonData).to.have.property('data');","    pm.expect(jsonData.data).to.have.property('attributes');","    pm.expect(jsonData.data).to.have.property('links');","    pm.expect(jsonData.data.attributes).to.have.property('type');","    pm.expect(jsonData.data.attributes).to.have.property('info');","    ","    pm.expect(jsonData).to.have.property('data');","    pm.expect(jsonData.data).to.have.property('relationships');","});","","pm.test(\"Response has valid relationship with subscription\", function() {","","    pm.expect(jsonData.data.relationships).to.have.property('subscriptions');","});","","pm.test(\"Response has valid relationship with user\", function() {","    pm.expect(jsonData).to.have.property('data');","    pm.expect(jsonData.data).to.have.property('relationships');","    pm.expect(jsonData.data.relationships).to.have.property('user');","    ","    var user = jsonData.data.relationships.user;","    pm.expect(user.data).to.have.property('id');","    pm.expect(user.data).to.have.property('type');","    pm.expect(user.data.type).to.be.eql('user');","});","","","    ","    "],"type":"text/javascript"}}],"id":"1b57f4de-9d59-41a1-bb68-d94d5b97f72e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/notificationchannels/:notification_channel_id?include=","urlObject":{"path":["v2","notificationchannels",":notification_channel_id"],"host":["{{base_url}}"],"query":[{"key":"include","value":""}],"variable":[{"type":"any","value":"{{notification_channel_id}}","key":"notification_channel_id"}]}},"response":[{"id":"0f267727-7b8c-4845-9398-93668a34febf","name":"Get a channel","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/notificationchannels/{{notification_channel_id}}?include=","host":["{{base_url}}"],"path":["v2","notificationchannels","{{notification_channel_id}}"],"query":[{"key":"include","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 09:54:55 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-LGKIawvKlPpXhrSoq3gn3EnsZkNnfCe3';style-src 'self' 'nonce-LGKIawvKlPpXhrSoq3gn3EnsZkNnfCe3';font-src 'self' data:"},{"key":"Request-Id","value":"8427e706-aaae-4ee7-a750-468b2047bc34"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationchannel\",\n        \"id\": \"7\",\n        \"attributes\": {\n            \"name\": \"Database channel\",\n            \"type\": \"database\",\n            \"info\": null\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/notificationchannels/7\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/user\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/user\"\n                }\n            },\n            \"subscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/subscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/subscriptions\"\n                }\n            },\n            \"notificationsubscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/7/relationships/notificationsubscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/7/notificationsubscriptions\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1b57f4de-9d59-41a1-bb68-d94d5b97f72e"},{"name":"Edit a channel","event":[{"listen":"test","script":{"id":"665b839f-e5db-43f7-afbd-8a1178cfb20d","exec":["// Status","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","// Json body","pm.test(\"Response has a valid JSON body\", function () {","     pm.response.to.be.withBody;","     pm.response.to.be.json;","});","","// Check Json","var jsonData = pm.response.json();","console.log(jsonData);","pm.test(\"Response has valid attributes\", function() {","    pm.expect(jsonData).to.have.property('data');","    pm.expect(jsonData.data).to.have.property('attributes');","    pm.expect(jsonData.data).to.have.property('links');","    pm.expect(jsonData.data.attributes).to.have.property('type');","    pm.expect(jsonData.data.attributes).to.have.property('info');","    pm.expect(jsonData.data.attributes.info).to.have.property('recipient');","});","","pm.test(\"Email address should have changed\", function() {","    pm.expect(jsonData.data.attributes.info.recipient).to.be.eql('anybody@exivity.com');","});",""],"type":"text/javascript"}}],"id":"45b00a57-8989-453b-995f-944ecc07eb61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"notificationchannel\",\r\n\t\t\"id\": \"{{notification_channel_id}}\",\r\n\t\t\"attributes\": {\r\n            \"info\": {\r\n            \t\"recipient\": \"anybody@exivity.com\"\r\n        \t}\r\n        }\r\n\t}\r\n}"},"url":"{{base_url}}/v2/notificationchannels/:notification_channel_id","urlObject":{"path":["v2","notificationchannels",":notification_channel_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{notification_channel_id}}","key":"notification_channel_id"}]}},"response":[{"id":"e1b8c327-bc1f-4ffd-9b44-aea2f51cdfd9","name":"Edit a channel","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"notificationchannel\",\r\n\t\t\"id\": \"{{notification_channel_id}}\",\r\n\t\t\"attributes\": {\r\n            \"info\": {\r\n            \t\"recipient\": \"anybody@exivity.com\"\r\n        \t}\r\n        }\r\n\t}\r\n}"},"url":{"raw":"{{base_url}}/v2/notificationchannels/:notification_channel_id","host":["{{base_url}}"],"path":["v2","notificationchannels",":notification_channel_id"],"variable":[{"key":"notification_channel_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 10:20:28 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-N755PmHwXUzNey6Q62ZfXYaxF2HO8cdC';style-src 'self' 'nonce-N755PmHwXUzNey6Q62ZfXYaxF2HO8cdC';font-src 'self' data:"},{"key":"Request-Id","value":"9238de2a-2115-448c-9c90-18165782e6d7"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationchannel\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"E-mails for someone\",\n            \"type\": \"mail\",\n            \"info\": {\n                \"recipient\": \"anybody@exivity.com\"\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/notificationchannels/1\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/1/relationships/user\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/1/user\"\n                }\n            },\n            \"subscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/1/relationships/subscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/1/subscriptions\"\n                }\n            },\n            \"notificationsubscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationchannels/1/relationships/notificationsubscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationchannels/1/notificationsubscriptions\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"45b00a57-8989-453b-995f-944ecc07eb61"},{"name":"Delete a channel","event":[{"listen":"test","script":{"id":"a19f86b4-cab4-4772-a0c8-e4edb3f3f882","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","","console.log('UNSET notification_channel_id');","pm.environment.unset(\"notification_channel_id\");"],"type":"text/javascript"}}],"id":"57e4b8b4-33eb-472d-8327-1d599d20c37d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/notificationchannels/:notification_channel_id","urlObject":{"path":["v2","notificationchannels",":notification_channel_id"],"host":["{{base_url}}"],"query":[],"variable":[{"type":"any","value":"{{notification_channel_id}}","key":"notification_channel_id"}]}},"response":[{"id":"25949796-a6a7-4d62-b5bf-7653e16b6ada","name":"Delete a channel","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/notificationchannels/:notification_channel_id","host":["{{base_url}}"],"path":["v2","notificationchannels",":notification_channel_id"],"variable":[{"key":"notification_channel_id","value":"{{notification_channel_id}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 11 May 2022 10:20:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-FqtmwB2gbqgmVPEqH3lyzPi8LljVJYYU';style-src 'self' 'nonce-FqtmwB2gbqgmVPEqH3lyzPi8LljVJYYU';font-src 'self' data:"},{"key":"Request-Id","value":"86d6e32f-fc5c-4344-aab4-ed4bc773bec8"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"57e4b8b4-33eb-472d-8327-1d599d20c37d"}],"id":"e84e190a-43f2-4a3d-b159-da0a27a9eb1d","description":"<p>Atomic support: ✔️</p>\n<p>Notifications are messages that are sent to a specific channel (e-mail, SMS, Slack, webhook) based on an event such as a Published Report, a Budget Evaluation, or a Workflow exit status.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#notificationchannel\">https://docs.exivity.com/architecture%20concepts/glossary/#notificationchannel</a></p>\n<h2 id=\"the-notificationchannel-object\">The NotificationChannel Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required unless <code>type=database</code></td>\n</tr>\n<tr>\n<td>type</td>\n<td><em>enum</em>( <code>database</code>, <code>mail</code>, <code>slack</code>, <code>nexmo</code>, <code>webhook</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>info</td>\n<td><em>object</em></td>\n<td>📝 editable</td>\n<td>Required unless <code>type=database</code>. <strong>Info Object</strong> (see below)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Info Object</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>recipient</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required. Email format if <code>type=email</code>. URL format if <code>type=webhook</code>.</td>\n</tr>\n<tr>\n<td>cc</td>\n<td><em>string</em>? or <em>array?</em></td>\n<td>📝 editable</td>\n<td>Can be used if <code>type=email</code>. Email format</td>\n</tr>\n<tr>\n<td>bcc</td>\n<td><em>string?</em> or <em>array?</em></td>\n<td>📝 editable</td>\n<td>Can be used if <code>type=email</code>. Email format</td>\n</tr>\n<tr>\n<td>headers</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>Can be used if <code>type=webhook</code>.</td>\n</tr>\n<tr>\n<td>tls_verification</td>\n<td><em>boolean</em></td>\n<td>📝 editable</td>\n<td>Can be used if <code>type=webhook</code>.</td>\n</tr>\n<tr>\n<td>include_attachments</td>\n<td><em>boolean</em></td>\n<td>📝 editable</td>\n<td>Can be used if <code>type=webhook</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>hasOne</td>\n<td>user</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>hasMany</td>\n<td>notificationsubscriptions</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a6a578fd-23c4-4913-b8ac-0219a497fbc0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7576bfc7-5167-4b67-9ea1-5339c1485d54","type":"text/javascript","exec":[""]}}],"_postman_id":"e84e190a-43f2-4a3d-b159-da0a27a9eb1d"},{"name":"/notificationsubscriptions","item":[{"name":"Get all notifications subscriptions","event":[{"listen":"test","script":{"id":"f64408c6-18b1-45bf-b9f3-0fe8664594a7","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});","","if (response.data.length) {","    pm.environment.set(\"notification_subscritpion_id\", response.data[0].id);","    console.log('SET notification_subscritpion_id: ' + pm.environment.get(\"notification_subscritpion_id\"));","}",""],"type":"text/javascript"}}],"id":"0b3b4d9f-56f5-4a54-b06c-c8d4530179fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"url":"{{base_url}}/v2/notificationsubscriptions?page[limit]=1&page[offset]=&sort=&filter[name]=&include=","urlObject":{"path":["v2","notificationsubscriptions"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":"1"},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":""},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":""},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[name]","value":""},{"description":{"content":"<p>Include additional related resources. Possible values: <code>user</code>, <code>channels</code>, <code>notificationchannels</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"36361854-7f85-4576-bdc8-29262551276b","name":"Get all notifications subscriptions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"url":{"raw":"{{base_url}}/v2/notificationsubscriptions?page[limit]=&page[offset]=&sort=&filter[name]=&include=","host":["{{base_url}}"],"path":["v2","notificationsubscriptions"],"query":[{"key":"page[limit]","value":"","description":"Limit the amount of results returned"},{"key":"page[offset]","value":"","description":"Return this page of the results"},{"key":"sort","value":"","description":"Sort results by this attribute"},{"key":"filter[name]","value":"","description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `user`, `channels`, `notificationchannels`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 12 May 2022 08:40:42 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-rDvPCjYcPjQWnisM2n00WYcRm8EWvk3g';style-src 'self' 'nonce-rDvPCjYcPjQWnisM2n00WYcRm8EWvk3g';font-src 'self' data:"},{"key":"Request-Id","value":"9afa5e1b-cef9-403f-af69-99fd02b7dd42"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"notificationsubscription\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"User-centric context-sensitive conglomeration\",\n                \"type\": \"workflow.ended\",\n                \"enabled\": false,\n                \"info\": {\n                    \"follow\": [\n                        \"2\",\n                        \"7\"\n                    ],\n                    \"only_status\": [\n                        \"failed\",\n                        \"successful\"\n                    ]\n                }\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/user\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/notificationchannels\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 24,\n            \"count\": 1,\n            \"per_page\": 1,\n            \"current_page\": 1,\n            \"total_pages\": 24\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/notificationsubscriptions?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"https://dev.exivity.net/v2/notificationsubscriptions?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"https://dev.exivity.net/v2/notificationsubscriptions?page%5Blimit%5D=1&sort=&filter%5Bname%5D=&include=&page%5Boffset%5D=24\"\n    }\n}"}],"_postman_id":"0b3b4d9f-56f5-4a54-b06c-c8d4530179fe"},{"name":"Create new notification subscription","event":[{"listen":"test","script":{"id":"a3f0becb-7009-448a-bee6-dbbbd29eed5a","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('notificationsubscription');","    pm.expect(response.data.attributes).to.be.an('object');","});","","pm.environment.set(\"notification_subscritpion_id\", response.data.id);","console.log('SET notification_subscritpion_id: ' + pm.environment.get(\"notification_subscritpion_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"8864a586-0dbb-4097-be25-383668c9dcba","exec":["\r","if (!pm.environment.get(\"notification_channel_id\")) {\r","    console.log('No channel ID set - create a new channel');\r","\r","    // Create a new channel\r","    pm.sendRequest({\r","        url: pm.variables.get(\"base_url\") + '/v1/notificationchannels',\r","        method: 'POST',\r","        header: {\r","            'Accept': 'application/json',\r","            'Content-Type': 'application/json',\r","            'Authorization': 'Bearer ' + pm.variables.get(\"token\")\r","        },\r","        body: {\r","            mode: 'raw',\r","            raw: JSON.stringify({\r","            \t\"data\": {\r","                    \"type\":\"notificationchannel\",\r","                    \"attributes\": {\r","                        \"type\": \"mail\",\r","                        \"name\": \"E-mail for someone\",\r","                        \"info\": {\r","                        \t\"recipient\": \"someone@exivity.com\"\r","                        }\r","                    },\r","                    \"relationships\": {\r","                    \t\"user\": {\r","                    \t\t\"data\": {\r","                    \t\t\t\"type\": \"user\",\r","                    \t\t\t\"id\":  pm.variables.get(\"user_id\")\r","                    \t\t}\r","                    \t}\r","                    }\r","                }\r","            })\r","        }\r","    }, function(error, response) {\r","        if (error) {\r","            console.log(\"Error: \" + error);\r","        } else {\r","            pm.expect(response).to.have.property('code', 201);\r","            json = response.json();\r","            pm.environment.set(\"notification_channel_id\", json.data.id);\r","            console.log('SET notification_channel_id: ' + pm.environment.get(\"notification_channel_id\"));\r","        }\r","    });\r","}\r","\r",""],"type":"text/javascript"}}],"id":"fe22f2e3-8832-4cac-8898-46a602fb9bde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationsubscription\",\n        \"attributes\": {\n            \"name\": \"Report has been published\",\n            \"type\": \"budget_evaluated\",\n            \"info\": {\n                \"budget_id\": 1,\n                \"threshold_percentage\": 80,\n                \"only_once\": true,\n                \"account_ids\": [1,2,3]\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t},\n        \t\"channels\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"channel\",\n        \t\t\t\"id\": \"{{notification_channel_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}"},"url":"{{base_url}}/v2/notificationsubscriptions","urlObject":{"path":["v2","notificationsubscriptions"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"c23efe23-92b9-4bc4-bac5-277e46a8142a","name":"Budget evaluated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationsubscription\",\n        \"attributes\": {\n            \"name\": \"Budget was evaluated\",\n            \"type\": \"budget_evaluated\",\n            \"info\": {\n                \"budget_id\": 1,\n            \t\"threshold_percentage\": 80,\n                \"only_once\": true,\n                \"account_ids\": [1,2,3]\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t},\n        \t\"channels\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"channel\",\n        \t\t\t\"id\": \"{{notification_channel_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v1/notificationsubscriptions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 18 Jan 2021 10:33:17 GMT"},{"key":"Date","value":"Mon, 18 Jan 2021 10:33:17 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/1/notificationsubscription/4"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-cYInKv7lTnjmgmgCFHZ4bpNFN91Naz9a';style-src 'self' 'nonce-cYInKv7lTnjmgmgCFHZ4bpNFN91Naz9a';font-src 'self' data:"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationsubscription\",\n        \"id\": \"4\",\n        \"attributes\": {\n            \"name\": \"Important workflow has ended\",\n            \"type\": \"budget_evaluated\",\n            \"enabled\": true,\n            \"info\": {\n                \"budget_id\": 1,\n                \"threshold_percentage\": 80,\n                \"only_once\": true,\n                \"account_ids\": [\n                    1,\n                    2,\n                    3\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/1/notificationsubscriptions/4\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/1/notificationsubscription/4/relationships/user\",\n                    \"related\": \"http://localhost:8012/1/notificationsubscription/4/user\"\n                }\n            },\n            \"channels\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/1/notificationsubscription/4/relationships/channels\",\n                    \"related\": \"http://localhost:8012/1/notificationsubscription/4/channels\"\n                }\n            }\n        }\n    }\n}"},{"id":"b3cb70c0-3c27-4cc1-bf97-474d9b3c82e6","name":"Report published","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationsubscription\",\n        \"attributes\": {\n            \"name\": \"Report has been published\",\n            \"type\": \"report_published\",\n            \"info\": {\n                \"report_id\": 2,\n                \"report_type\": \"separate\",\n                \"account_depth\": 1,\n                \"dimension\": [\"instances\", \"services\"],\n                \"group_by\": \"instances_by_instance\",\n                \"account_filter\": 2,\n                \"date_settings\": \"previous_month\",\n                \"format\": \"csv\"\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t},\n        \t\"channels\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"channel\",\n        \t\t\t\"id\": \"{{notification_channel_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v2/notificationsubscriptions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 12 May 2022 08:15:19 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/NotificationSubscription/NotificationSubscriptions"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-I07mUdM6TftHEwW66rxvlp8jOGBRc0Xr';style-src 'self' 'nonce-I07mUdM6TftHEwW66rxvlp8jOGBRc0Xr';font-src 'self' data:"},{"key":"Request-Id","value":"b84b22a3-b49b-4aeb-9341-45e251b1bbf6"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationsubscription\",\n        \"id\": \"23\",\n        \"attributes\": {\n            \"name\": \"Report has been published\",\n            \"type\": \"report_published\",\n            \"enabled\": true,\n            \"info\": {\n                \"format\": \"csv\",\n                \"group_by\": \"instances_by_instance\",\n                \"dimension\": [\n                    \"instances\",\n                    \"services\"\n                ],\n                \"report_id\": 2,\n                \"report_type\": \"separate\",\n                \"account_depth\": 1,\n                \"date_settings\": \"previous_month\",\n                \"account_filter\": 2\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/23\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/23/relationships/user\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/23/user\"\n                }\n            },\n            \"channels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/23/relationships/channels\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/23/channels\"\n                }\n            },\n            \"notificationchannels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/23/relationships/notificationchannels\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/23/notificationchannels\"\n                }\n            }\n        }\n    }\n}"},{"id":"6be33803-34e0-4cbe-99d7-e416beaa874a","name":"Workflow ended","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationsubscription\",\n        \"attributes\": {\n            \"name\": \"Important workflow has ended\",\n            \"type\": \"workflow_ended\",\n            \"info\": {\n            \t\"follow\": [\"*\"],\n            \t\"only_status\": [\"successful\", \"failed\"],\n                \"files\": {\n                    \"filename\": [\"extractor_[0-9]{,2}\\\\.[a-z0-9]{2,4}\", \"transformer_[0-9]{,2}\\\\.[a-z0-9]{2,4}\"],\n                    \"edited_since_workflow_started\": true,\n                    \"compress_attachments\": false\n                }\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t},\n        \t\"channels\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"channel\",\n        \t\t\t\"id\": \"{{notification_channel_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}/v1/notificationsubscriptions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 01 Oct 2020 13:56:50 GMT"},{"key":"Date","value":"Thu, 01 Oct 2020 13:56:50 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/1/notificationsubscription/4"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-fbRtUtOlOS4kJT8Yo6ukBsG3NWXYLU6i';style-src 'self' 'nonce-fbRtUtOlOS4kJT8Yo6ukBsG3NWXYLU6i';font-src 'self' data:"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationsubscription\",\n        \"id\": \"4\",\n        \"attributes\": {\n            \"name\": \"Important workflow has ended\",\n            \"type\": \"workflow_ended\",\n            \"enabled\": true,\n            \"info\": {\n                \"follow\": [\n                    \"*\"\n                ],\n                \"only_status\": [\n                    \"successful\",\n                    \"failed\"\n                ],\n                \"files\": {\n                    \"filename\": [\n                        \"extractor_[0-9]{,2}\\\\.[a-z0-9]{2,4}\",\n                        \"transformer_[0-9]{,2}\\\\.[a-z0-9]{2,4}\"\n                    ],\n                    \"edited_since_workflow_started\": true,\n                    \"compress_attachments\": false\n                }\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/1/notificationsubscriptions/4\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/1/notificationsubscription/4/relationships/user\",\n                    \"related\": \"http://localhost:8012/1/notificationsubscription/4/user\"\n                }\n            }\n        }\n    }\n}"},{"id":"50f46b1b-c6c9-4a62-ab8b-2b59453ac17c","name":"Workflow ended with file attachement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"type\":\"notificationsubscription\",\n        \"attributes\": {\n            \"name\": \"Important workflow has ended\",\n            \"type\": \"workflow.ended\",\n            \"info\": {\n            \t\"follow\": [\"*\"],\n            \t\"only_status\": [\"successful\", \"failed\"],\n                \"files\": {\n                    \"filename\": [\"extractor_[0-9]{,2}\\\\.[a-z0-9]{2,4}\", \"transformer_[0-9]{,2}\\\\.[a-z0-9]{2,4}\"],\n                    \"edited_since_workflow_started\": true,\n                    \"compress_attachments\": false\n                }\n            }\n        },\n        \"relationships\": {\n        \t\"user\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"user\",\n        \t\t\t\"id\": \"{{user_id}}\"\n        \t\t}\n        \t},\n        \t\"channels\": {\n        \t\t\"data\": {\n        \t\t\t\"type\": \"channel\",\n        \t\t\t\"id\": \"{{notification_channel_id}}\"\n        \t\t}\n        \t}\n        }\n    }\n}"},"url":"{{base_url}}/v2/notificationsubscriptions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Thu, 01 Oct 2020 13:56:50 GMT"},{"key":"Date","value":"Thu, 01 Oct 2020 13:56:50 GMT"},{"key":"Connection","value":"close"},{"key":"Location","value":"http://localhost:8012/1/notificationsubscription/4"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-fbRtUtOlOS4kJT8Yo6ukBsG3NWXYLU6i';style-src 'self' 'nonce-fbRtUtOlOS4kJT8Yo6ukBsG3NWXYLU6i';font-src 'self' data:"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationsubscription\",\n        \"id\": \"4\",\n        \"attributes\": {\n            \"name\": \"Important workflow has ended\",\n            \"type\": \"workflow_ended\",\n            \"enabled\": true,\n            \"info\": {\n                \"follow\": [\n                    \"*\"\n                ],\n                \"only_status\": [\n                    \"successful\",\n                    \"failed\"\n                ],\n                \"files\": {\n                    \"filename\": [\n                        \"extractor_[0-9]{,2}\\\\.[a-z0-9]{2,4}\",\n                        \"transformer_[0-9]{,2}\\\\.[a-z0-9]{2,4}\"\n                    ],\n                    \"edited_since_workflow_started\": true,\n                    \"compress_attachments\": false\n                }\n            }\n        },\n        \"links\": {\n            \"self\": \"http://localhost:8012/1/notificationsubscriptions/4\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"http://localhost:8012/1/notificationsubscription/4/relationships/user\",\n                    \"related\": \"http://localhost:8012/1/notificationsubscription/4/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"fe22f2e3-8832-4cac-8898-46a602fb9bde"},{"name":"Get a notification subscription by ID","event":[{"listen":"test","script":{"id":"1e808a6d-471f-4fa1-858a-eb7e3b5252ba","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response has a valid JSON body\", function () {","     pm.response.to.be.withBody;","     pm.response.to.be.json;","});","","const response = pm.response.json();","console.log(response);","","// Check Json","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","});","","","pm.test(\"Response has valid attributes\", function() {","    pm.expect(response).to.have.property('data');","    pm.expect(response.data).to.have.property('id');","    pm.expect(response.data).to.have.property('type');","    pm.expect(response.data.type).to.be.eql('notificationsubscription');","    pm.expect(response.data).to.have.property('attributes');","    pm.expect(response.data).to.have.property('links');","    pm.expect(response.data).to.have.property('relationships');","});","    "],"type":"text/javascript"}}],"id":"eade7bf6-285f-498a-b0a5-c8fa4242cacf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/notificationsubscriptions/{{notification_subscritpion_id}}?page[limit]=&page[offset]=&sort=&filter[name]=&include=","urlObject":{"path":["v2","notificationsubscriptions","{{notification_subscritpion_id}}"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":""},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":""},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":""},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[name]","value":""},{"description":{"content":"<p>Include additional related resources. Possible values: <code>user</code>, <code>channels</code>, <code>notificationchannels</code></p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"5b7fe65a-403c-4cad-9597-17b5ba04949c","name":"Get a notification subscription by ID","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"},{"key":"","value":"","disabled":true}],"url":{"raw":"{{base_url}}/v2/notificationsubscriptions/{{notification_subscritpion_id}}?page[limit]=&page[offset]=&sort=&filter[name]=&include=","host":["{{base_url}}"],"path":["v2","notificationsubscriptions","{{notification_subscritpion_id}}"],"query":[{"key":"page[limit]","value":"","description":"Limit the amount of results returned"},{"key":"page[offset]","value":"","description":"Return this page of the results"},{"key":"sort","value":"","description":"Sort results by this attribute"},{"key":"filter[name]","value":"","description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `user`, `channels`, `notificationchannels`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 12 May 2022 08:42:24 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-3r17LnhXITmWP4lSAI7I7IdAQNkJhtdz';style-src 'self' 'nonce-3r17LnhXITmWP4lSAI7I7IdAQNkJhtdz';font-src 'self' data:"},{"key":"Request-Id","value":"cf40a885-6ad6-48ea-b67a-a045f1754b9b"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationsubscription\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"User-centric context-sensitive conglomeration\",\n            \"type\": \"workflow.ended\",\n            \"enabled\": false,\n            \"info\": {\n                \"follow\": [\n                    \"2\",\n                    \"7\"\n                ],\n                \"only_status\": [\n                    \"failed\",\n                    \"successful\"\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/user\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/user\"\n                }\n            },\n            \"channels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/channels\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/channels\"\n                }\n            },\n            \"notificationchannels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/notificationchannels\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/notificationchannels\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"eade7bf6-285f-498a-b0a5-c8fa4242cacf"},{"name":"Edit a notification subscription","event":[{"listen":"test","script":{"id":"e06855b4-9c05-4b30-8011-5207ddf3307c","exec":["// pm.test(\"Status code is 200\", function () {","//     pm.response.to.have.status(200);","// });","","// const response = pm.response.json();","// console.log(response);","","// pm.test(\"Response contains data\", function () {","//     pm.expect(response.data).to.be.an('array');","// });",""],"type":"text/javascript"}}],"id":"003f1952-4c88-4f05-97f8-ba24eb0d5733","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"notificationsubscription\",\r\n\t\t\"id\": \"{{notification_subscritpion_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Super important workflow ended\"\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/notificationsubscriptions/{{notification_subscritpion_id}}","urlObject":{"path":["v2","notificationsubscriptions","{{notification_subscritpion_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"2b45091f-285b-446d-8b3d-2892318d53e4","name":"Edit a notification subscription","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"notificationsubscription\",\r\n\t\t\"id\": \"{{notification_subscritpion_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"Super important workflow ended\"\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/notificationsubscriptions/{{notification_subscritpion_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 12 May 2022 08:43:01 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-N9J9RWrM7pgqptEXLWjGZtKoCy0hBETM';style-src 'self' 'nonce-N9J9RWrM7pgqptEXLWjGZtKoCy0hBETM';font-src 'self' data:"},{"key":"Request-Id","value":"e94f4eae-c359-4475-a1ac-d850ac51c4e5"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"notificationsubscription\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"name\": \"Super important workflow ended\",\n            \"type\": \"workflow.ended\",\n            \"enabled\": false,\n            \"info\": {\n                \"follow\": [\n                    \"2\",\n                    \"7\"\n                ],\n                \"only_status\": [\n                    \"failed\",\n                    \"successful\"\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/user\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/user\"\n                }\n            },\n            \"channels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/channels\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/channels\"\n                }\n            },\n            \"notificationchannels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/relationships/notificationchannels\",\n                    \"related\": \"https://dev.exivity.net/v2/notificationsubscriptions/1/notificationchannels\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"003f1952-4c88-4f05-97f8-ba24eb0d5733"},{"name":"Delete a notification subscription","event":[{"listen":"test","script":{"id":"13144d71-f476-4cde-9ac2-896ff5b8136e","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","// Delete the variable","console.log('UNSET notification_subscritpion_id');","pm.environment.unset(\"notification_subscritpion_id\");",""],"type":"text/javascript"}}],"id":"19cae3ab-3f23-4942-b364-55ed13df6ceb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/notificationsubscriptions/{{notification_subscritpion_id}}","urlObject":{"path":["v2","notificationsubscriptions","{{notification_subscritpion_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"3e4d2871-1c1b-4314-ba1c-60eb042ccd96","name":"Delete a notification subscription","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/notificationsubscriptions/{{notification_subscritpion_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 12 May 2022 08:43:08 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-aALR3uTBw5A6FMlWgrhmOmi4Hm8rFUn1';style-src 'self' 'nonce-aALR3uTBw5A6FMlWgrhmOmi4Hm8rFUn1';font-src 'self' data:"},{"key":"Request-Id","value":"6e1980a4-e34c-4935-8f82-fb0e3688ce6f"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"19cae3ab-3f23-4942-b364-55ed13df6ceb"}],"id":"d69feadc-9273-4bb5-b671-48c5a4be20a3","description":"<p>Atomic support: ✔️</p>\n<p>Notifications are messages that are sent to a specific channel (e-mail, SMS, Slack, webhook) based on an event such as a Published Report, a Budget Evaluation, or a Workflow exit status.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#notification\">https://docs.exivity.com/architecture%20concepts/glossary/#notification</a></p>\n<h2 id=\"the-notificationsubscription-object\">The NotificationSubscription Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>type</td>\n<td><em>enum</em>(<code>workflow_ended</code>, <code>report_published</code>, <code>budget_evaluated</code>)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td><em>boolean</em>?</td>\n<td>📝 editable</td>\n<td></td>\n</tr>\n<tr>\n<td>title</td>\n<td><em>string</em>?</td>\n<td>📝 editable</td>\n<td>It can contain some tags that are being replaced when the notification is sent. Each notification type has its own tags that can be used. For example, workflow.ended supports ${workflow_id}, ${workflow_name}, and ${workflow_status}.</td>\n</tr>\n<tr>\n<td>description</td>\n<td><em>string</em>?</td>\n<td>📝 editable</td>\n<td>Same behavior as title attribute</td>\n</tr>\n<tr>\n<td>info</td>\n<td><em>object</em></td>\n<td>📝 editable</td>\n<td>Required. <strong>Info Object</strong> (see below)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"info-object\"><strong>Info Object</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>follow</td>\n<td><em>array</em>?</td>\n<td>📝 editable</td>\n<td>Pass \"<code>\\\\*</code>\" to follow all, or pass an array of IDs corresponding to the <code>type</code> attribute.</td>\n<td></td>\n</tr>\n<tr>\n<td>only_status</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td><code>successful</code>, <code>failed</code></td>\n<td></td>\n</tr>\n<tr>\n<td>files</td>\n<td><em>object</em>?</td>\n<td>📝 editable</td>\n<td>Use if <code>type=workflow_ended</code> <strong>Files Object</strong> (see below)</td>\n<td></td>\n</tr>\n<tr>\n<td>report_id</td>\n<td><em>number</em></td>\n<td>📝 editable</td>\n<td>Required if <code>type=report_published</code></td>\n<td></td>\n</tr>\n<tr>\n<td>account_depth</td>\n<td><em>number</em></td>\n<td>📝 editable</td>\n<td>Required if <code>type=report_published</code> 1-5</td>\n<td></td>\n</tr>\n<tr>\n<td>report_type</td>\n<td><em>enum</em>(<code>separated</code>, <code>consolidated</code>)</td>\n<td>📝 editable</td>\n<td>Required if <code>type=report_published</code></td>\n<td></td>\n</tr>\n<tr>\n<td>dimension</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>Use if <code>type=report_published</code>. Specify <code>services</code> and/or <code>instances</code>. <code>accounts</code> can also be included if <code>report_type=consolidated</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>group_by</td>\n<td><em>enum</em>( <code>instances_by_instance</code>, <code>instances_by_service</code>)</td>\n<td>📝 editable</td>\n<td>Use if <code>type=report_published</code>. Dimension must specify <code>instances</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>account_filter</td>\n<td><em>number</em>?</td>\n<td>📝 editable</td>\n<td>Use if <code>type=report_published</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td>date_settings</td>\n<td><em>enum</em>(<code>previous_month</code>, <code>month_to_date</code>)</td>\n<td>📝 editable</td>\n<td>Required if <code>type=report_published</code></td>\n<td></td>\n</tr>\n<tr>\n<td>format</td>\n<td><em>enum</em>(<code>csv</code>, <code>pdf/summary</code>)</td>\n<td>📝 editable</td>\n<td>Required if <code>type=report_published</code></td>\n<td></td>\n</tr>\n<tr>\n<td>budget_id</td>\n<td><em>number</em></td>\n<td>📝 editable</td>\n<td>Required if <code>type=budget_evaluated</code></td>\n<td></td>\n</tr>\n<tr>\n<td>threshold_percentage</td>\n<td><em>number</em></td>\n<td>📝 editable</td>\n<td>Required if <code>type=budget_evaluated</code>. 0-100</td>\n<td></td>\n</tr>\n<tr>\n<td>only_once</td>\n<td><em>boolean</em></td>\n<td>📝 editable</td>\n<td>Required if <code>type=budget_evaluated</code></td>\n<td></td>\n</tr>\n<tr>\n<td>account_ids</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>Required if <code>type=budget_evaluated</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"files-object\">Files Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>compress_attachments</td>\n<td><em>boolean</em>?</td>\n<td>📝 editable</td>\n<td></td>\n</tr>\n<tr>\n<td>edited_since_workflow_started</td>\n<td><em>boolean</em>?</td>\n<td>📝 editable</td>\n<td></td>\n</tr>\n<tr>\n<td>filename</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>List of filenames to include. Can use regular expressions</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"relationships\">Relationships</h2>\n<p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>hasOne</td>\n<td>user</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>hasOne</td>\n<td>notificationchannel</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ba4ceb8e-64fa-4e39-887d-d8fd1c2c9c4b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a286b1e5-b674-4c05-8fba-6a0ff2c66de4","type":"text/javascript","exec":[""]}}],"_postman_id":"d69feadc-9273-4bb5-b671-48c5a4be20a3"},{"name":"/notifications","item":[{"name":"Get all database notification","event":[{"listen":"test","script":{"id":"612e939d-5eda-415d-b32b-e864d4a242b4","exec":["// pm.test(\"Status code is 200\", function () {","//     pm.response.to.have.status(200);","// });","","// const response = pm.response.json();","// console.log(response);","","// pm.test(\"Response contains data\", function () {","//     pm.expect(response.data).to.be.an('array');","// });","","// // Set the notification_id to the ID of the first notification","// pm.environment.set(\"notification_id\", response.data[0].id);"],"type":"text/javascript"}}],"id":"f007389b-567b-469a-9224-edd46e809049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/notifications","description":"<p>Get all database notification for auth user</p>\n","urlObject":{"path":["v2","notifications"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"ebe8549b-f516-4fcd-bbfa-98724fd4aed0","name":"Get all database notification","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:24:51 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-OvwsVLLv75RSKUgf8x2dcm7QsNUzvHjD';style-src 'self' 'nonce-OvwsVLLv75RSKUgf8x2dcm7QsNUzvHjD';font-src 'self' data:"},{"key":"Request-Id","value":"d516bbad-94fd-4ec9-9e9d-5fd8e84fa3f4"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"notification\",\n            \"id\": \"9222c0ad-b1a1-4d02-8d45-c90e2e2ddcb5\",\n            \"attributes\": {\n                \"type\": \"App\\\\Model\\\\Notifications\\\\Workflow\\\\WorkflowEndedSuccessNotification\",\n                \"notifiable_type\": \"App\\\\User\",\n                \"notifiable_id\": \"f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                \"data\": \"{\\\"Title\\\":\\\"Workflow #10: \\\\\\\"workflow_db_notiftest\\\\\\\" has ended.\\\",\\\"Description\\\":\\\"\\\",\\\"Status\\\":\\\"ended\\\",\\\"Started at\\\":\\\"2022-05-16 15:24:05\\\",\\\"Ended at\\\":\\\"2022-05-16 15:24:05\\\",\\\"ID\\\":10}\",\n                \"read_at\": null,\n                \"created_at\": 1652714646,\n                \"updated_at\": 1652714646\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/notifications/9222c0ad-b1a1-4d02-8d45-c90e2e2ddcb5\"\n            }\n        },\n        {\n            \"type\": \"notification\",\n            \"id\": \"ff556e5d-3dcc-4730-805a-a72063b1c9ea\",\n            \"attributes\": {\n                \"type\": \"App\\\\Model\\\\Notifications\\\\Workflow\\\\WorkflowEndedSuccessNotification\",\n                \"notifiable_type\": \"App\\\\User\",\n                \"notifiable_id\": \"f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                \"data\": \"{\\\"Title\\\":\\\"Workflow #10: \\\\\\\"workflow_db_notiftest\\\\\\\" has ended.\\\",\\\"Description\\\":\\\"\\\",\\\"Status\\\":\\\"ended\\\",\\\"Started at\\\":\\\"2022-05-16 15:24:05\\\",\\\"Ended at\\\":\\\"2022-05-16 15:24:05\\\",\\\"ID\\\":10}\",\n                \"read_at\": null,\n                \"created_at\": 1652714646,\n                \"updated_at\": 1652714646\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/notifications/ff556e5d-3dcc-4730-805a-a72063b1c9ea\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/notifications?page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/notifications?page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/notifications?page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"f007389b-567b-469a-9224-edd46e809049"}],"id":"42fa0e8a-00ce-4924-97a0-9ca4ad601c9a","description":"<p>Get all database notifications.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#notification\">https://docs.exivity.com/architecture%20concepts/glossary/#notification</a></p>\n","event":[{"listen":"prerequest","script":{"id":"55fb0702-0aa1-4a18-a15e-10aab71840d6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ac687a76-0050-422c-aa53-ab247a7324e8","type":"text/javascript","exec":[""]}}],"_postman_id":"42fa0e8a-00ce-4924-97a0-9ca4ad601c9a"}],"id":"7ea42981-cb45-40d3-ab1b-d53463800f08","_postman_id":"7ea42981-cb45-40d3-ab1b-d53463800f08","description":""},{"name":"Administration","item":[{"name":"/users","item":[{"name":"/users/me","item":[{"name":"Retrieve the current user","event":[{"listen":"test","script":{"id":"e1661d43-ee9f-4fe5-bffa-e6cfda3f38fe","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('user');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.test(\"Response contains keys\", function () {","        pm.expect(response.data.attributes).to.have.property(\"username\");","        pm.expect(response.data.attributes).to.have.property(\"email_address\");","        pm.expect(response.data.attributes).to.have.property(\"account_access_type\");","        pm.expect(response.data.attributes).to.have.property(\"source\");","        pm.expect(response.data.attributes).to.have.property(\"display_name\");","    });","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"user_id\", response.data.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6e328677-e2e5-472e-9530-c19e080efae8","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"8e0d1e20-c291-4bdf-ac87-d7389e3e7ce9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/users/me?include=","urlObject":{"path":["v2","users","me"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>accounts</code>, <code>usergroup</code>, <code>channels</code>, <code>notificationsubscriptions</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"89a40d34-5e62-4887-a8f7-e2154ff3fce7","name":"Retrieve the current user","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/users/me?include=","host":["{{base_url}}"],"path":["v2","users","me"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `accounts`, `usergroup`, `channels`, `notificationsubscriptions`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 13:34:43 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-JuuWA6nuJWPJiH5ht7wymug3SR9M6n8Y';style-src 'self' 'nonce-JuuWA6nuJWPJiH5ht7wymug3SR9M6n8Y';font-src 'self' data:"},{"key":"Request-Id","value":"06312904-cd36-4c86-9549-f29893d16eee"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"user\",\n        \"id\": \"f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n        \"attributes\": {\n            \"username\": \"admin\",\n            \"email_address\": \"\",\n            \"account_access_type\": \"all\",\n            \"source\": \"local\",\n            \"display_name\": \"admin\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\"\n        },\n        \"relationships\": {\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/accounts\",\n                    \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\"\n                },\n                \"data\": []\n            },\n            \"usergroup\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/usergroup\",\n                    \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/usergroup\"\n                }\n            },\n            \"channels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/channels\",\n                    \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/channels\"\n                }\n            },\n            \"notificationchannels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/notificationchannels\",\n                    \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\"\n                }\n            },\n            \"notificationsubscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/notificationsubscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationsubscriptions\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"8e0d1e20-c291-4bdf-ac87-d7389e3e7ce9"},{"name":"Update the current user","event":[{"listen":"test","script":{"id":"380294b1-410c-44f7-b6a5-48a683f0ab41","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('user');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"user_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.test(\"Response contains keys\", function () {","        pm.expect(response.data.attributes).to.have.property(\"username\");","        pm.expect(response.data.attributes).to.have.property(\"email_address\");","        pm.expect(response.data.attributes).to.have.property(\"account_access_type\");","        pm.expect(response.data.attributes).to.have.property(\"source\");","        pm.expect(response.data.attributes).to.have.property(\"display_name\");","    });","  pm.expect(response.data.attributes.username).to.eql('admin');","  pm.expect(response.data.attributes.email_address).to.eql('tester@exivity.com');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"162c97bd-258c-4c98-aba3-4295c1ba272c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"user\",\r\n    \"id\": \"{{user_id}}\",\r\n    \"attributes\": {\r\n      \"email_address\": \"tester@exivity.com\",\r\n      \"current_password\": \"exivity\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/users/me","urlObject":{"path":["v2","users","me"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4aeeea17-65d3-43da-9009-3c58dd659ab6","name":"Update the current user password","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"user\",\r\n    \"id\": \"{{user_id}}\",\r\n    \"attributes\": {\r\n      \"password\": \"new_password\",\r\n      \"current_password\": \"old_password\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/users/me"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"162c97bd-258c-4c98-aba3-4295c1ba272c"},{"name":"Generate a new key","event":[{"listen":"test","script":{"id":"8866e378-38a7-466e-89c7-9d69fa9be4da","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.result).to.be.a('string');","    pm.expect(response.result).to.eql('rotated');","});"],"type":"text/javascript"}}],"id":"a9dfe07a-69c5-443e-8c39-120e574ea9fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/users/me/key","description":"<p>This will invalidate all previously issued tokens.</p>\n","urlObject":{"path":["v2","users","me","key"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"70d32d5e-d131-4663-9e8b-790ea548dd99","name":"Generate a new key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":true},{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/users/me/key"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:45:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-aER6WeSomjeKNTGl3rune7Kxi39imFlM';style-src 'self' 'nonce-aER6WeSomjeKNTGl3rune7Kxi39imFlM';font-src 'self' data:"},{"key":"Request-Id","value":"61cd30f4-d1da-40bd-9114-1e95c44e6cf5"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"rotated\"\n}"}],"_postman_id":"a9dfe07a-69c5-443e-8c39-120e574ea9fd"},{"name":"Update the current users app state","event":[{"listen":"test","script":{"id":"dc953c4b-035d-4385-8aea-f8ddde6e76c5","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct state\", function () {","    pm.expect(response.state).to.be.an('object');","    pm.expect(response.state.key).to.not.be.undefined;","\tpm.expect(response.state.key).to.eql('value');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"37ebcaf3-8471-496f-907c-888c31ec478d","exec":["pm.environment.unset(\"token\");","","const api = eval(pm.globals.get('exivity'))();","","api.start()","    .then(api.requireToken)","    .then(api.ready)","    .catch(function(err) {","        console.log(err);","    });",""],"type":"text/javascript"}}],"id":"3a2b51d4-e234-4472-9fb3-79fdb4e99015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"state\": {\r\n\t\t\"key\": \"value\"\r\n\t}\r\n}"},"url":"{{base_url}}/v2/users/me/state?app=glass","urlObject":{"path":["v2","users","me","state"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The client to update the state for. One of <code>glass</code>, <code>lens</code>.</p>\n","type":"text/plain"},"key":"app","value":"glass"}],"variable":[]}},"response":[],"_postman_id":"3a2b51d4-e234-4472-9fb3-79fdb4e99015"},{"name":"Delete the current users app state","event":[{"listen":"test","script":{"id":"d573e735-c2d6-423d-b759-0414621e1b2e","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});"],"type":"text/javascript"}}],"id":"cc676427-f611-419a-89ca-bb83e28da0db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{base_url}}/v2/users/me/state?app=glass","urlObject":{"path":["v2","users","me","state"],"host":["{{base_url}}"],"query":[{"key":"app","value":"glass"}],"variable":[]}},"response":[],"_postman_id":"cc676427-f611-419a-89ca-bb83e28da0db"}],"id":"3d3876ae-d28a-4f7f-86d9-468ec1eb2033","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"d33a6ba2-2cea-4aeb-a8f3-b6ee17ea1c18","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3471d592-ceee-4108-990c-4724a2a42df7","type":"text/javascript","exec":[""]}}],"_postman_id":"3d3876ae-d28a-4f7f-86d9-468ec1eb2033","description":""},{"name":"Retrieve a list of users","event":[{"listen":"test","script":{"id":"23b950fa-9ea7-4c02-85c3-d2f820a708b9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"519c2679-594c-49f0-9356-f62876a4bd66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/users?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","users"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>usergroup</code>, <code>accounts</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"483c47aa-3d25-4154-a10e-1df89333444e","name":"Retrieve a list of users","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/users?page[limit]=&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","users"],"query":[{"key":"page[limit]","value":"","description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `usergroup`, `accounts`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:54:53 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-F0S7DZ3ksOyuWkvc9OxNNaPlNihivMZ6';style-src 'self' 'nonce-F0S7DZ3ksOyuWkvc9OxNNaPlNihivMZ6';font-src 'self' data:"},{"key":"Request-Id","value":"8b731ab3-81e0-4f16-8886-2bc05ba90dff"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"user\",\n            \"id\": \"ca2ec047-b8bd-45bf-a7ac-935b4779ca6c\",\n            \"attributes\": {\n                \"username\": \"Sister51\",\n                \"email_address\": \"Lenny.Grant@gmail.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"Laverne Koepp\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/notificationsubscriptions\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 9,\n            \"count\": 1,\n            \"per_page\": 1,\n            \"current_page\": 1,\n            \"total_pages\": 9\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/users?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/users?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"https://dev.exivity.net/v2/users?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"https://dev.exivity.net/v2/users?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=9\"\n    }\n}"}],"_postman_id":"519c2679-594c-49f0-9356-f62876a4bd66"},{"name":"Add a new user","event":[{"listen":"test","script":{"id":"1a84e004-ab40-4214-b123-3d7c058a5158","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('user');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.test(\"Response contains keys\", function () {","        pm.expect(response.data.attributes).to.have.property(\"username\");","        pm.expect(response.data.attributes).to.have.property(\"email_address\");","        pm.expect(response.data.attributes).to.have.property(\"account_access_type\");","        pm.expect(response.data.attributes).to.have.property(\"source\");","        pm.expect(response.data.attributes).to.have.property(\"display_name\");","    });","    pm.expect(response.data.attributes.username).to.include('User');","    pm.expect(response.data.attributes.email_address).to.include('someone');","    pm.expect(response.data.attributes.email_address).to.include('@exivity.com');","    pm.expect(response.data.attributes.account_access_type).to.eql('custom');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"new_user_id\", response.data.id);","console.log('SET new_user_id: ' + pm.environment.get(\"new_user_id\"));",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c04950e8-b4f6-41f2-b55f-b20b999a2c86","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireUsergroup)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"22931e88-2633-4940-bcc4-639154803195","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"user\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"username\": \"User - 977\",\r\n\t\t\t\"email_address\": \"someone_260@exivity.com\",\r\n\t\t\t\"password\": \"super-complex-password\",\r\n\t\t\t\"account_access_type\": \"custom\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"usergroup\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"usergroup\",\r\n\t\t\t\t\t\"id\": \"{{usergroup_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/users","urlObject":{"path":["v2","users"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"124af8e9-eb79-480d-86b5-56020b24c7ec","name":"Add a new user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"user\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"username\": \"User - 150\",\r\n\t\t\t\"email_address\": \"someone_322@exivity.com\",\r\n\t\t\t\"password\": \"super-complex-password\",\r\n\t\t\t\"account_access_type\": \"custom\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n\t\t\t\"usergroup\": {\r\n\t\t\t\t\"data\": {\r\n\t\t\t\t\t\"type\": \"usergroup\",\r\n\t\t\t\t\t\"id\": \"{{usergroup_id}}\"\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:55:19 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/User/Users"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-KpMgJSyZKRNrnj7J4TfzxVsFBlQHGzsA';style-src 'self' 'nonce-KpMgJSyZKRNrnj7J4TfzxVsFBlQHGzsA';font-src 'self' data:"},{"key":"Request-Id","value":"d645a5b8-4515-4033-a1a2-ccca809f6846"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"user\",\n        \"id\": \"b20f375f-3ca5-481a-801d-33185f316c0b\",\n        \"attributes\": {\n            \"username\": \"User - 566\",\n            \"email_address\": \"someone_518@exivity.com\",\n            \"account_access_type\": \"custom\",\n            \"source\": \"local\",\n            \"display_name\": \"User - 566\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b\"\n        },\n        \"relationships\": {\n            \"usergroup\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/usergroup\",\n                    \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/usergroup\"\n                }\n            },\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/accounts\",\n                    \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/accounts\"\n                }\n            },\n            \"channels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/channels\",\n                    \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/channels\"\n                }\n            },\n            \"notificationchannels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/notificationchannels\",\n                    \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/notificationchannels\"\n                }\n            },\n            \"notificationsubscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/notificationsubscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/notificationsubscriptions\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"22931e88-2633-4940-bcc4-639154803195"},{"name":"Retrieve a user","event":[{"listen":"test","script":{"id":"767992aa-ae28-46bf-b0e0-26355d258aa4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('user');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"new_user_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.test(\"Response contains keys\", function () {","        pm.expect(response.data.attributes).to.have.property(\"username\");","        pm.expect(response.data.attributes).to.have.property(\"email_address\");","        pm.expect(response.data.attributes).to.have.property(\"account_access_type\");","        pm.expect(response.data.attributes).to.have.property(\"source\");","        pm.expect(response.data.attributes).to.have.property(\"display_name\");","    });","    pm.expect(response.data.attributes.username).to.include('User');","    pm.expect(response.data.attributes.email_address).to.include('someone');","    pm.expect(response.data.attributes.email_address).to.include('@exivity.com');","    pm.expect(response.data.attributes.account_access_type).to.eql('custom');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"514d38b3-66fc-4e94-bd54-3b822767a6f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/users/{{new_user_id}}","urlObject":{"path":["v2","users","{{new_user_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"41a980de-025e-451b-a6ac-17a9985c84db","name":"Retrieve a user","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/users/{{new_user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:55:40 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-gHJUjNeNDldwkHFajrwhYOqvAKntdUlo';style-src 'self' 'nonce-gHJUjNeNDldwkHFajrwhYOqvAKntdUlo';font-src 'self' data:"},{"key":"Request-Id","value":"df6a46cc-35f5-4081-932e-a72307fdb316"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"user\",\n            \"id\": \"b20f375f-3ca5-481a-801d-33185f316c0b\",\n            \"attributes\": {\n                \"username\": \"User - 566\",\n                \"email_address\": \"someone_518@exivity.com\",\n                \"account_access_type\": \"custom\",\n                \"source\": \"local\",\n                \"display_name\": \"User - 566\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/b20f375f-3ca5-481a-801d-33185f316c0b/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"ca2ec047-b8bd-45bf-a7ac-935b4779ca6c\",\n            \"attributes\": {\n                \"username\": \"Sister51\",\n                \"email_address\": \"Lenny.Grant@gmail.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"Laverne Koepp\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/ca2ec047-b8bd-45bf-a7ac-935b4779ca6c/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"8ce58e81-289c-4503-a143-937094542b1f\",\n            \"attributes\": {\n                \"username\": \"Else_Toy23\",\n                \"email_address\": \"Pablo.Reichel30@hotmail.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"Terrell White\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8ce58e81-289c-4503-a143-937094542b1f/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"298abc01-6bc6-48ea-9c0d-d9c607d946e2\",\n            \"attributes\": {\n                \"username\": \"Nola42\",\n                \"email_address\": \"Waylon.OHara0@hotmail.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"saml\",\n                \"display_name\": \"Manuel Larson\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/298abc01-6bc6-48ea-9c0d-d9c607d946e2/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"4976ad99-e019-406e-9f8c-8b53a7411480\",\n            \"attributes\": {\n                \"username\": \"Damon.Breitenberg24\",\n                \"email_address\": \"Vergie18@yahoo.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"Byron Little\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/4976ad99-e019-406e-9f8c-8b53a7411480/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"e95c67a4-4549-4024-8d5a-76a41f73aef9\",\n            \"attributes\": {\n                \"username\": \"Carmela16\",\n                \"email_address\": \"Cory.Osinski@yahoo.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"saml\",\n                \"display_name\": \"Mrs. Kurt Bruen\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/e95c67a4-4549-4024-8d5a-76a41f73aef9/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"247f7b6d-09d5-432f-b2a5-9aa3219c73a4\",\n            \"attributes\": {\n                \"username\": \"Hassan_Klocko27\",\n                \"email_address\": \"Eugenia.Kreiger37@hotmail.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"ldap\",\n                \"display_name\": \"Orlando Brown V\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/247f7b6d-09d5-432f-b2a5-9aa3219c73a4/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"1e566852-3e3d-49e1-bdd4-1dbf253e2055\",\n            \"attributes\": {\n                \"username\": \"Elsa_Becker\",\n                \"email_address\": \"Maria93@gmail.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"Kara Bogisich\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/1e566852-3e3d-49e1-bdd4-1dbf253e2055/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"8b1dbed1-9b40-4ddf-93f2-f49aaa59c374\",\n            \"attributes\": {\n                \"username\": \"Rowena.Wisozk\",\n                \"email_address\": \"Alyce.Howell15@hotmail.com\",\n                \"account_access_type\": \"all\",\n                \"source\": \"ldap\",\n                \"display_name\": \"Floyd Hayes Sr.\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/8b1dbed1-9b40-4ddf-93f2-f49aaa59c374/notificationsubscriptions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"user\",\n            \"id\": \"f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n            \"attributes\": {\n                \"username\": \"admin\",\n                \"email_address\": \"\",\n                \"account_access_type\": \"all\",\n                \"source\": \"local\",\n                \"display_name\": \"admin\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\"\n            },\n            \"relationships\": {\n                \"usergroup\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/usergroup\",\n                        \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/usergroup\"\n                    }\n                },\n                \"accounts\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/accounts\",\n                        \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\"\n                    }\n                },\n                \"channels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/channels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/channels\"\n                    }\n                },\n                \"notificationchannels\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/notificationchannels\",\n                        \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\"\n                    }\n                },\n                \"notificationsubscriptions\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/relationships/notificationsubscriptions\",\n                        \"related\": \"https://dev.exivity.net/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationsubscriptions\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 10,\n            \"count\": 10,\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/users?page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/users?page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/users?page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"514d38b3-66fc-4e94-bd54-3b822767a6f8"},{"name":"Generate a new key","event":[{"listen":"test","script":{"id":"60a93f3d-ff31-4456-ac5e-932f6c59c6e4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.result).to.be.a('string');","    pm.expect(response.result).to.eql('rotated');","});"],"type":"text/javascript"}}],"id":"c9661dcf-3a2e-41e8-871f-929be003e3e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/users/{{new_user_id}}/key","description":"<p>⚠️ Available since v3.0.0.</p>\n<p>This will invalidate all previously issued tokens.</p>\n","urlObject":{"path":["v2","users","{{new_user_id}}","key"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"b6700dca-3520-4f8d-b31d-f0dea325ce91","name":"Generate a new key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/users/{{new_user_id}}/key"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:56:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-xUPKYgNEd6WdUyDYB6FsgxkKgWCSA3LB';style-src 'self' 'nonce-xUPKYgNEd6WdUyDYB6FsgxkKgWCSA3LB';font-src 'self' data:"},{"key":"Request-Id","value":"6367e0ae-0f57-41c7-9bc8-d2e9af2144c6"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"rotated\"\n}"}],"_postman_id":"c9661dcf-3a2e-41e8-871f-929be003e3e1"},{"name":"Update a user","event":[{"listen":"test","script":{"id":"26c253d1-7ab3-42de-a921-c1082a1f5849","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('user');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"new_user_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.test(\"Response contains keys\", function () {","        pm.expect(response.data.attributes).to.have.property(\"username\");","        pm.expect(response.data.attributes).to.have.property(\"email_address\");","        pm.expect(response.data.attributes).to.have.property(\"account_access_type\");","        pm.expect(response.data.attributes).to.have.property(\"source\");","        pm.expect(response.data.attributes).to.have.property(\"display_name\");","    });","    pm.expect(response.data.attributes.username).to.include('modified_user');","    pm.expect(response.data.attributes.email_address).to.include('someone+modified');","    pm.expect(response.data.attributes.email_address).to.include('@exivity.com');","    pm.expect(response.data.attributes.account_access_type).to.eql('all');","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"1650c5b0-12d4-4880-8f28-a464d1290d92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"user\",\r\n    \"id\": \"{{new_user_id}}\",\r\n    \"attributes\": {\r\n      \"username\": \"modified_user - 172\",\r\n      \"email_address\": \"someone+modified_547@exivity.com\",\r\n      \"account_access_type\": \"all\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/users/{{new_user_id}}","urlObject":{"path":["v2","users","{{new_user_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"23a9bb73-ed2f-4525-a38a-bb2986b14400","name":"Update a user","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"user\",\r\n    \"id\": \"{{new_user_id}}\",\r\n    \"attributes\": {\r\n      \"username\": \"modified_user - 327\",\r\n      \"email_address\": \"someone+modified_867@exivity.com\",\r\n      \"account_access_type\": \"all\"\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/users/{{new_user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:56:24 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-wahl0vwl3rKvaxoI1JcLCQ82bmiX9Cah';style-src 'self' 'nonce-wahl0vwl3rKvaxoI1JcLCQ82bmiX9Cah';font-src 'self' data:"},{"key":"Request-Id","value":"dd07bc5e-a701-4d22-9315-1f450f27f489"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"user\",\n        \"id\": \"4e25d605-4ad3-422c-aba4-8d9b97de2b2f\",\n        \"attributes\": {\n            \"username\": \"modified_user - 851\",\n            \"email_address\": \"someone+modified_629@exivity.com\",\n            \"account_access_type\": \"all\",\n            \"source\": \"local\",\n            \"display_name\": \"modified_user - 851\"\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f\"\n        },\n        \"relationships\": {\n            \"usergroup\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/relationships/usergroup\",\n                    \"related\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/usergroup\"\n                }\n            },\n            \"accounts\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/relationships/accounts\",\n                    \"related\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/accounts\"\n                }\n            },\n            \"channels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/relationships/channels\",\n                    \"related\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/channels\"\n                }\n            },\n            \"notificationchannels\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/relationships/notificationchannels\",\n                    \"related\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/notificationchannels\"\n                }\n            },\n            \"notificationsubscriptions\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/relationships/notificationsubscriptions\",\n                    \"related\": \"https://dev.exivity.net/v2/users/4e25d605-4ad3-422c-aba4-8d9b97de2b2f/notificationsubscriptions\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1650c5b0-12d4-4880-8f28-a464d1290d92"},{"name":"Delete a user","event":[{"listen":"test","script":{"id":"58c75dbb-e65e-4f9f-8f87-a8839dd5843a","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET new_user_id');","pm.environment.unset(\"new_user_id\");"],"type":"text/javascript"}}],"id":"5cf9780d-ddad-4e64-8265-e6c82c21753a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/users/{{new_user_id}}","urlObject":{"path":["v2","users","{{new_user_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"a0d507f8-c111-4a4d-9285-2e3e3d5551c9","name":"Delete a user","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/users/{{new_user_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:56:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-HhYdRWUAkQlJfhWC4DYrReoUPeWdBEbe';style-src 'self' 'nonce-HhYdRWUAkQlJfhWC4DYrReoUPeWdBEbe';font-src 'self' data:"},{"key":"Request-Id","value":"96fee792-a128-4ac4-86ad-a51fb77b62cf"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5cf9780d-ddad-4e64-8265-e6c82c21753a"}],"id":"1f3ed8fb-4887-4ed4-8bcd-310f2fa13afa","description":"<p>Atomic support: ✔️</p>\n<p>Everyone connecting to our API needs a valid user account. Users can change some of their details themselves.</p>\n<p>Users with the \"manage_users\" permission can view, create, edit and delete users on the system.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/administration/user-management/users\">https://docs.exivity.com/administration/user-management/users</a></p>\n<h2 id=\"user-object\">User Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>mutability</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>👁 read-only</td>\n<td>Required, unique</td>\n</tr>\n<tr>\n<td>account_access_type</td>\n<td>enum(all, custom)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>current_password</td>\n<td>string</td>\n<td>🔏 immutable</td>\n<td>Required only used when updating user</td>\n</tr>\n<tr>\n<td>display_name</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>email_address</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required, unique email, max 255 characters</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required, min 8 characters</td>\n</tr>\n<tr>\n<td>source</td>\n<td>enum(local, ldap, saml)</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>username</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required, unique</td>\n</tr>\n</tbody>\n</table>\n</div><p>Relationships</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>relationship</th>\n<th>cardinality</th>\n<th>type</th>\n<th>required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>usergroup</td>\n<td>hasOne</td>\n<td>usergroup</td>\n<td>✔️</td>\n</tr>\n<tr>\n<td>accounts</td>\n<td>hasMany</td>\n<td>account</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>channels</td>\n<td>hasMany</td>\n<td>notificationchannel</td>\n<td>❌</td>\n</tr>\n<tr>\n<td>notificationsubscriptions</td>\n<td>hasMany</td>\n<td>notificationsubscriptions</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"5a1c713a-47a9-49dc-b7f9-9e2a37c62e6b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ea47458b-4ddf-431f-b427-ada009f419f9","type":"text/javascript","exec":[""]}}],"_postman_id":"1f3ed8fb-4887-4ed4-8bcd-310f2fa13afa"},{"name":"/usergroups","item":[{"name":"Retrieve a list of usergroups","event":[{"listen":"test","script":{"id":"e47c38d0-9cfd-4d5f-92d6-22e5029625f4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"1baea7e0-1bf2-40be-a0d3-f160fa17edd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/usergroups?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","usergroups"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>users</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"bc54cb2c-8958-49c2-adb6-c3d03cb311e4","name":"Retrieve a list of usergroups","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/usergroups?page[limit]=&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","usergroups"],"query":[{"key":"page[limit]","value":"","description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `users`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:45:16 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-BJfq2pJiGvb7npBp5ZjZ1lM0z2K1c40K';style-src 'self' 'nonce-BJfq2pJiGvb7npBp5ZjZ1lM0z2K1c40K';font-src 'self' data:"},{"key":"Request-Id","value":"ad903999-6505-43a5-850e-66793b412cb9"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"usergroup\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"admins\",\n                \"permissions\": [\n                    \"*\"\n                ]\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/usergroups/1\"\n            },\n            \"relationships\": {\n                \"users\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/usergroups/1/relationships/users\",\n                        \"related\": \"https://dev.exivity.net/v2/usergroups/1/users\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 5,\n            \"count\": 1,\n            \"per_page\": 1,\n            \"current_page\": 1,\n            \"total_pages\": 5\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/usergroups?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/usergroups?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"https://dev.exivity.net/v2/usergroups?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"https://dev.exivity.net/v2/usergroups?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=5\"\n    }\n}"}],"_postman_id":"1baea7e0-1bf2-40be-a0d3-f160fa17edd7"},{"name":"Add a new usergroup","event":[{"listen":"test","script":{"id":"8e1176e5-60ae-4eed-972e-c435b68eb37e","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('usergroup');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","    \"name\",","        \"permissions\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('testers');","  pm.expect(response.data.attributes.permissions).to.eql(['manage_users']);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"usergroup_id\", response.data.id);"],"type":"text/javascript"}}],"id":"863843ef-a239-48f8-9cda-5be033942605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"usergroup\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"testers\",\r\n\t\t\t\"permissions\": [\"manage_users\"]\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/usergroups","urlObject":{"path":["v2","usergroups"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"08d90d41-ef0b-444d-851f-d5c2c8926d1e","name":"Add a new usergroup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"usergroup\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"testers\",\r\n\t\t\t\"permissions\": [\"manage_users\"]\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/usergroups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:44:03 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/Usergroup/Usergroups"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-6GyGGNVSqu6x1b3ANKb4XJixLUTzFzRb';style-src 'self' 'nonce-6GyGGNVSqu6x1b3ANKb4XJixLUTzFzRb';font-src 'self' data:"},{"key":"Request-Id","value":"90551202-9778-4075-a2a1-c5445f9664b0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"usergroup\",\n        \"id\": \"5\",\n        \"attributes\": {\n            \"name\": \"testers\",\n            \"permissions\": [\n                \"manage_users\"\n            ]\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/usergroups/5\"\n        },\n        \"relationships\": {\n            \"users\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/usergroups/5/relationships/users\",\n                    \"related\": \"https://dev.exivity.net/v2/usergroups/5/users\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"863843ef-a239-48f8-9cda-5be033942605"},{"name":"Retrieve a usergroup","event":[{"listen":"test","script":{"id":"85080668-53fb-46bb-aa14-9e907083bee0","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('usergroup');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"usergroup_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","    \"name\",","        \"permissions\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('testers');","  pm.expect(response.data.attributes.permissions).to.eql(['manage_users']);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"da024db8-f4db-4487-8459-5a7874658b74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/usergroups/{{usergroup_id}}?include","urlObject":{"path":["v2","usergroups","{{usergroup_id}}"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>users</code>.</p>\n","type":"text/plain"},"key":"include","value":null}],"variable":[]}},"response":[{"id":"dd8a4e4b-cca3-46c2-89b8-b5d8eb6a555b","name":"Retrieve a usergroup","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/usergroups/{{usergroup_id}}?include","host":["{{base_url}}"],"path":["v2","usergroups","{{usergroup_id}}"],"query":[{"key":"include","value":null,"description":"Include additional related resources. Possible values: `users`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:19:54 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-SA98MT5gxJQI68p04WP2VxtA7cp12MFZ';style-src 'self' 'nonce-SA98MT5gxJQI68p04WP2VxtA7cp12MFZ';font-src 'self' data:"},{"key":"Request-Id","value":"977696ce-1069-4292-90f0-e4a07abc8666"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"usergroup\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"admins\",\n                \"permissions\": [\n                    \"*\"\n                ]\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/usergroups/1\"\n            },\n            \"relationships\": {\n                \"users\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/usergroups/1/relationships/users\",\n                        \"related\": \"https://dev.exivity.net/v2/usergroups/1/users\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"usergroup\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"name\": \"marketing\",\n                \"permissions\": [\n                    \"view_audit\",\n                    \"manage_catalogue\",\n                    \"manage_files\",\n                    \"manage_datasets\"\n                ]\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/usergroups/2\"\n            },\n            \"relationships\": {\n                \"users\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/usergroups/2/relationships/users\",\n                        \"related\": \"https://dev.exivity.net/v2/usergroups/2/users\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"usergroup\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"name\": \"managers\",\n                \"permissions\": [\n                    \"manage_users\"\n                ]\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/usergroups/3\"\n            },\n            \"relationships\": {\n                \"users\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/usergroups/3/relationships/users\",\n                        \"related\": \"https://dev.exivity.net/v2/usergroups/3/users\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"usergroup\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"name\": \"clients\",\n                \"permissions\": [\n                    \"manage_datasets\",\n                    \"manage_accounts\",\n                    \"view_audit\",\n                    \"manage_catalogue\",\n                    \"manage_settings\",\n                    \"manage_metadata_definitions\",\n                    \"view_budgets\",\n                    \"manage_data_sources\",\n                    \"view_reports\",\n                    \"view_cogs\",\n                    \"view_logs\",\n                    \"manage_users\",\n                    \"manage_files\",\n                    \"manage_reports\",\n                    \"manage_workflows\"\n                ]\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/usergroups/4\"\n            },\n            \"relationships\": {\n                \"users\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/usergroups/4/relationships/users\",\n                        \"related\": \"https://dev.exivity.net/v2/usergroups/4/users\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 4,\n            \"count\": 4,\n            \"per_page\": 10,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/usergroups?page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/usergroups?page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/usergroups?page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"da024db8-f4db-4487-8459-5a7874658b74"},{"name":"Update a usergroup","event":[{"listen":"test","script":{"id":"a03f7eba-0bdc-4339-91a7-4357990f40a2","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('usergroup');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"usergroup_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","    \"name\",","        \"permissions\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('modified_testers');","  pm.expect(response.data.attributes.permissions).to.eql(['manage_users','manage_settings']);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"b8c9e983-6dff-4b08-8116-287ead01e3ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"usergroup\",\r\n    \"id\": \"{{usergroup_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"modified_testers\",\r\n      \"permissions\": [\r\n        \"manage_users\",\r\n        \"manage_settings\"\r\n      ]\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/usergroups/{{usergroup_id}}","urlObject":{"path":["v2","usergroups","{{usergroup_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"555b66fe-d4f4-47fe-877e-f26f77609e21","name":"Update a usergroup","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"usergroup\",\r\n    \"id\": \"{{usergroup_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"modified_testers\",\r\n      \"permissions\": [\r\n        \"manage_users\",\r\n        \"manage_settings\"\r\n      ]\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/usergroups/{{usergroup_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:45:33 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-gXWmkSkZqM5fO32xtBliZx7CwIFYDKrT';style-src 'self' 'nonce-gXWmkSkZqM5fO32xtBliZx7CwIFYDKrT';font-src 'self' data:"},{"key":"Request-Id","value":"241e56e4-e6ae-4217-8458-191dc3f1de43"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"usergroup\",\n        \"id\": \"5\",\n        \"attributes\": {\n            \"name\": \"modified_testers\",\n            \"permissions\": [\n                \"manage_users\",\n                \"manage_settings\"\n            ]\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/usergroups/5\"\n        },\n        \"relationships\": {\n            \"users\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/usergroups/5/relationships/users\",\n                    \"related\": \"https://dev.exivity.net/v2/usergroups/5/users\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"b8c9e983-6dff-4b08-8116-287ead01e3ae"},{"name":"Delete a usergroup","event":[{"listen":"test","script":{"id":"5d0e5c86-1d6b-44a1-bbac-6bc2522e59d1","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET usergroup_id');","pm.environment.unset(\"usergroup_id\");"],"type":"text/javascript"}}],"id":"479828df-7e8b-4c71-9a44-f6403e49eaf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/usergroups/{{usergroup_id}}","urlObject":{"path":["v2","usergroups","{{usergroup_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"4b8ee0c9-ba4a-4f13-8c65-34998a9e2c86","name":"Delete a usergroup","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/usergroups/{{usergroup_id}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 14:45:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-NNjNk1mZmMRToLu6g11fRW1Kl2Duf0dB';style-src 'self' 'nonce-NNjNk1mZmMRToLu6g11fRW1Kl2Duf0dB';font-src 'self' data:"},{"key":"Request-Id","value":"caa52fb3-4e89-4805-96f5-c258f4d57a29"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"479828df-7e8b-4c71-9a44-f6403e49eaf9"}],"id":"f5b08007-b307-4fff-a285-247977c46227","description":"<h2 id=\"usergroup-object\">Usergroup Object</h2>\n<p>It is possible to create custom usergroups, with different permissions. Users can be assigned to different usergroups.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/administration/user-management/groups\">https://docs.exivity.com/administration/user-management/groups</a></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>mutability</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td><em>string</em></td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>permissions</td>\n<td><em>array</em></td>\n<td>📝 editable</td>\n<td>Required, <em>permissions</em> (<strong>see below</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Permissions</strong></p>\n<p>Please see the Exivity documentation for more information on specific permissions: <a href=\"https://docs.exivity.com/administration/user-management/groups#user-permissions\">https://docs.exivity.com/administration/user-management/groups#user-permissions</a></p>\n<p>The following is a list of currently supported permission on our system:</p>\n<ul>\n<li><code>view_audit</code></li>\n<li><code>view_billing</code></li>\n<li><code>view_budgets</code></li>\n<li><code>view_cogs</code></li>\n<li><code>view_logs</code></li>\n<li><code>manage_accounts</code></li>\n<li><code>manage_catalogue</code></li>\n<li><code>manage_data_sources</code></li>\n<li><code>manage_datasets</code></li>\n<li><code>manage_files</code></li>\n<li><code>manage_metadata_definitions</code></li>\n<li><code>manage_reports</code></li>\n<li><code>manage_settings</code></li>\n<li><code>manage_users</code></li>\n<li><code>manage_workflows</code></li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>relationship</th>\n<th>cardinality</th>\n<th>type</th>\n<th>required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>users</td>\n<td>hasMany</td>\n<td>user</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"3d6671a9-6b0f-4574-9757-c831fba8ff36","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"94399e11-4a99-4c62-afef-005c62e7ce53","type":"text/javascript","exec":[""]}}],"_postman_id":"f5b08007-b307-4fff-a285-247977c46227"},{"name":"/configurations","item":[{"name":"system","item":[{"name":"Retrieve system configuration","event":[{"listen":"test","script":{"id":"db8ae407-59bf-430e-ab02-a12dfdb2423f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains configuration object\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.be.eql('configuration');","    pm.expect(response.data.id).to.be.eql('system');","});","","pm.test(\"Response contains USE_CACHE\", function () { pm.expect(response.data.attributes.USE_CACHE).to.be.a('boolean'); });","pm.test(\"Response contains CURRENCY\", function () { pm.expect(response.data.attributes.CURRENCY).to.be.a('string'); });","pm.test(\"Response contains DECIMAL_SYMBOL\", function () { pm.expect(response.data.attributes.DECIMAL_SEPARATOR).to.be.a('string'); });","pm.test(\"Response contains THOUSANDS_SYMBOL\", function () { pm.expect(response.data.attributes.THOUSAND_SEPARATOR).to.be.a('string'); });","pm.test(\"Response contains RATE_PRECISION\", function () { pm.expect(response.data.attributes.RATE_PRECISION).to.be.a('number'); });","pm.test(\"Response contains SUMMARY_PRECISION\", function () { pm.expect(response.data.attributes.SUMMARY_PRECISION).to.be.a('number'); });","pm.test(\"Response contains QUANTITY_PRECISION\", function () { pm.expect(response.data.attributes.QUANTITY_PRECISION).to.be.a('number'); });","pm.test(\"Response contains DATE_FORMAT\", function () { pm.expect(response.data.attributes.DATE_FORMAT).to.be.a('string'); });","pm.test(\"Response contains SUMMARY_TITLE\", function () { pm.expect(response.data.attributes.SUMMARY_TITLE).to.be.a('string'); });","pm.test(\"Response contains REPORT_START_MONTH\", function () { pm.expect(response.data.attributes.REPORT_START_MONTH).to.be.a('number'); });","pm.test(\"Response contains APP_DEBUG\", function () { pm.expect(response.data.attributes.APP_DEBUG).to.be.a('boolean'); });","pm.test(\"Response contains APP_NAME\", function () { pm.expect(response.data.attributes.APP_NAME).to.be.a('string'); });","pm.test(\"Response contains APP_DOCUMENTATION\", function () { pm.expect(response.data.attributes.APP_DOCUMENTATION).to.be.a('boolean'); });","pm.test(\"Response contains USE_LOCAL_STORAGE\", function () { pm.expect(response.data.attributes.USE_LOCAL_STORAGE).to.be.a('boolean'); });","pm.test(\"Response contains ANALYTICS\", function () { pm.expect(response.data.attributes.ANALYTICS).to.be.a('boolean'); });","pm.test(\"Response contains ERROR_TRACKING\", function () { pm.expect(response.data.attributes.ERROR_TRACKING).to.be.a('boolean'); });"],"type":"text/javascript"}}],"id":"aa75b4c8-91a3-4c1c-9006-ba8a84166a51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/configurations/system","urlObject":{"path":["v2","configurations","system"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"9c64111a-5670-4aa4-8332-572abd5f87df","name":"Retrieve system configuration","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/configurations/system"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 09 Jan 2023 09:24:36 GMT"},{"key":"Date","value":"Mon, 09 Jan 2023 09:24:35 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X5226e92bc05821f66dbe5c7a4162b6ff"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X5226e92bc05821f66dbe5c7a4162b6ff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-sjE7tOcLRvV0YYJySreqFEUEZmRHHHc4';style-src 'self' 'nonce-sjE7tOcLRvV0YYJySreqFEUEZmRHHHc4';font-src 'self' data:"},{"key":"Request-Id","value":"7b032de7-2164-49f4-aa37-bc58e550af48"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"configuration\",\n        \"id\": \"system\",\n        \"attributes\": {\n            \"APP_DEBUG\": false,\n            \"APP_NAME\": \"Exivity\",\n            \"APP_LOGO\": null,\n            \"APP_ICON\": null,\n            \"APP_FAVICON\": null,\n            \"APP_COLOUR\": \"#00a8d8\",\n            \"APP_CSS\": \"\",\n            \"APP_DOCUMENTATION\": true,\n            \"APP_LANGUAGE\": \"en\",\n            \"PUBLIC_ROOT\": \"https://localhost:8001\",\n            \"SSO_LOGIN_METHOD\": \"local_user_or_ldap\",\n            \"USE_LOCAL_STORAGE\": false,\n            \"ANALYTICS\": true,\n            \"ANALYTICS_EXTRA_PROPERTY\": null,\n            \"ERROR_TRACKING\": true,\n            \"BETA_FEATURES\": false,\n            \"TOKEN_TTL\": \"4 hours\",\n            \"ALLOW_PERSISTENT_TOKENS\": false,\n            \"USE_CACHE\": true,\n            \"CURRENCY\": \"EUR\",\n            \"CURRENCY_FORMAT\": \"€\",\n            \"DECIMAL_SEPARATOR\": \".\",\n            \"CSV_DELIMITER\": \",\",\n            \"CSV_DECIMAL_SEPARATOR\": \".\",\n            \"THOUSAND_SEPARATOR\": \".\",\n            \"RATE_PRECISION\": 8,\n            \"REPORT_PRECISION\": 2,\n            \"SUMMARY_PRECISION\": 2,\n            \"QUANTITY_PRECISION\": 6,\n            \"PERCENTAGE_PRECISION\": 2,\n            \"DATE_FORMAT\": \"dd-MM-yyyy\",\n            \"SUMMARY_ADDRESS\": null,\n            \"SUMMARY_IMAGE\": null,\n            \"SUMMARY_TITLE\": \"Summary\",\n            \"SUMMARY_EXTRA\": \"Updated from Postman Test\",\n            \"SUMMARY_MIN_COMMIT\": \"Uplift for minimum commitment of {quantity} {label}\",\n            \"GRAPH_MAX_SERIES\": 15,\n            \"REPORT_START_MONTH\": 1,\n            \"DISCLAIMER_ENABLED\": false,\n            \"DISCLAIMER_TITLE\": \"Disclaimer\",\n            \"DISCLAIMER_TEXT\": \"\",\n            \"DISCLAIMER_AGREE_BUTTON_TEXT\": \"I agree\",\n            \"PASSWORD_POLICY\": \"length_dictionary\",\n            \"ADDITIONAL_CORS_ORIGINS\": null,\n            \"MAX_LOGIN_ATTEMPTS\": 5,\n            \"LOGIN_ATTEMPTS_INTERVAL\": null,\n            \"BLOCK_LOGIN_DURATION\": \"15 minutes\",\n            \"FINGERPRINTER\": \"secure_ip_useragent\"\n        }\n    }\n}"}],"_postman_id":"aa75b4c8-91a3-4c1c-9006-ba8a84166a51"},{"name":"Retrieve system configuration (unauthenticated)","event":[{"listen":"test","script":{"id":"3156604b-288c-463d-a587-d55cd5001805","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains configuration data\", function () {","    pm.expect(response.configuration).to.be.an('object');","});","","pm.test(\"Response contains APP_DEBUG\", function () { pm.expect(response.configuration.APP_DEBUG).to.be.a('boolean'); });","pm.test(\"Response contains APP_NAME\", function () { pm.expect(response.configuration.APP_NAME).to.be.a('string'); });","//pm.test(\"Response contains APP_LOGO\", function () { pm.expect(response.configuration.APP_LOGO).to.be.a('string'); });","//pm.test(\"Response contains APP_ICON\", function () { pm.expect(response.configuration.APP_ICON).to.be.a('string'); });","//pm.test(\"Response contains APP_COLOUR\", function () { pm.expect(response.configuration.APP_COLOUR).to.be.a('string'); });","//pm.test(\"Response contains APP_FAVICON\", function () { pm.expect(response.configuration.APP_FAVICON).to.be.a('string'); });","pm.test(\"Response contains APP_DOCUMENTATION\", function () { pm.expect(response.configuration.APP_DOCUMENTATION).to.be.a('boolean'); });","pm.test(\"Response contains USE_LOCAL_STORAGE\", function () { pm.expect(response.configuration.USE_LOCAL_STORAGE).to.be.a('boolean'); });","pm.test(\"Response contains ANALYTICS\", function () { pm.expect(response.configuration.ANALYTICS).to.be.a('boolean'); });","pm.test(\"Response contains ERROR_TRACKING\", function () { pm.expect(response.configuration.ERROR_TRACKING).to.be.a('boolean'); });","","pm.test(\"Response doesn't contain non-public keys\", function () {","    pm.expect(response.configuration.USE_CACHE).to.be.undefined;","    pm.expect(response.configuration.CURRENCY).to.be.undefined;","    pm.expect(response.configuration.DECIMAL_SYMBOL).to.be.undefined;","    pm.expect(response.configuration.THOUSANDS_SYMBOL).to.be.undefined;","    pm.expect(response.configuration.RATE_PRECISION).to.be.undefined;","    pm.expect(response.configuration.REPORT_PRECISION).to.be.undefined;","    pm.expect(response.configuration.INVOICE_PRECISION).to.be.undefined;","    pm.expect(response.configuration.QUANTITY_PRECISION).to.be.undefined;","    pm.expect(response.configuration.DATE_FORMAT).to.be.undefined;","    pm.expect(response.configuration.INVOICE_ADDRESS).to.be.undefined;","    pm.expect(response.configuration.INVOICE_IMAGE).to.be.undefined;","    pm.expect(response.configuration.INVOICE_TITLE).to.be.undefined;","    pm.expect(response.configuration.INVOICE_EXTRA).to.be.undefined;","    pm.expect(response.configuration.GRAPH_MAX_SERIES).to.be.undefined;","    pm.expect(response.configuration.REPORT_START_MONTH).to.be.undefined;","});"],"type":"text/javascript"}}],"id":"d434a4d4-f392-446c-9393-b0f07445b412","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/configurations/system","urlObject":{"path":["v2","configurations","system"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"098e56ae-def7-41de-80a6-40dd593fd86a","name":"Retrieve system configuration (unauthenticated)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/configurations/system"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 09 Jan 2023 10:12:38 GMT"},{"key":"Date","value":"Mon, 09 Jan 2023 10:12:38 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xef027881c5755f263088b16eef5af31c"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xef027881c5755f263088b16eef5af31c"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-bFpC0h9VYDhL0NSWCFsHilgbRQb6dsug';style-src 'self' 'nonce-bFpC0h9VYDhL0NSWCFsHilgbRQb6dsug';font-src 'self' data:"},{"key":"Request-Id","value":"069ed9f3-56ff-4866-884b-f9da194422e6"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"configuration\",\n        \"id\": \"system\",\n        \"attributes\": {\n            \"APP_DEBUG\": false,\n            \"APP_NAME\": \"Exivity\",\n            \"APP_LOGO\": null,\n            \"APP_ICON\": null,\n            \"APP_FAVICON\": null,\n            \"APP_COLOUR\": \"#00a8d8\",\n            \"APP_CSS\": \"\",\n            \"APP_DOCUMENTATION\": true,\n            \"APP_LANGUAGE\": \"en\",\n            \"PUBLIC_ROOT\": \"https://localhost:8001\",\n            \"SSO_LOGIN_METHOD\": \"local_user_or_ldap\",\n            \"USE_LOCAL_STORAGE\": false,\n            \"ANALYTICS\": true,\n            \"ANALYTICS_EXTRA_PROPERTY\": null,\n            \"ERROR_TRACKING\": true,\n            \"BETA_FEATURES\": false,\n            \"TOKEN_TTL\": \"4 hours\",\n            \"ALLOW_PERSISTENT_TOKENS\": false\n        }\n    }\n}"}],"_postman_id":"d434a4d4-f392-446c-9393-b0f07445b412"},{"name":"Update configuration","event":[{"listen":"test","script":{"id":"e5e449dc-e95c-4e30-839c-7ce95715b1af","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains configuration data\", function () {","    pm.expect(response.data).to.be.an('object');","});","","pm.test(\"Response contains new keys\", function () {","    pm.expect(response.data.attributes.SUMMARY_EXTRA).to.be.eql(\"Updated from Postman Test\");","});"],"type":"text/javascript"}}],"id":"11ac3a0f-dac7-4e8b-9c45-a302c6cf0d69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{  \r\n   \"data\":{\r\n        \"type\": \"configuration\",\r\n        \"id\": \"system\",\r\n        \"attributes\": {\r\n            \"SUMMARY_EXTRA\": \"Updated from Postman Test\"\r\n        }\r\n   }\r\n}"},"url":"{{base_url}}/v2/configurations/system","urlObject":{"path":["v2","configurations","system"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"57911a23-0872-41c3-a87a-876a2c16f60f","name":"Update configuration","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{  \r\n   \"data\":{\r\n        \"type\": \"configuration\",\r\n        \"id\": \"system\",\r\n        \"attributes\": {\r\n            \"SUMMARY_EXTRA\": \"Updated from Postman Test\"\r\n        }\r\n   }\r\n}"},"url":"{{base_url}}/v2/configurations/system"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Mon, 09 Jan 2023 10:13:00 GMT"},{"key":"Date","value":"Mon, 09 Jan 2023 10:13:00 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X89c0547f6361cd7a60099c925c3b48e6"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X89c0547f6361cd7a60099c925c3b48e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-31ZEQxe9R8zNIMwlY9YqmqeJMaIiVQMk';style-src 'self' 'nonce-31ZEQxe9R8zNIMwlY9YqmqeJMaIiVQMk';font-src 'self' data:"},{"key":"Request-Id","value":"4be34144-0725-497e-87c1-3378c982acde"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"configuration\",\n        \"id\": \"system\",\n        \"attributes\": {\n            \"APP_DEBUG\": false,\n            \"APP_NAME\": \"Exivity\",\n            \"APP_LOGO\": null,\n            \"APP_ICON\": null,\n            \"APP_FAVICON\": null,\n            \"APP_COLOUR\": \"#00a8d8\",\n            \"APP_CSS\": \"\",\n            \"APP_DOCUMENTATION\": true,\n            \"APP_LANGUAGE\": \"en\",\n            \"PUBLIC_ROOT\": \"https://localhost:8001\",\n            \"SSO_LOGIN_METHOD\": \"local_user_or_ldap\",\n            \"USE_LOCAL_STORAGE\": false,\n            \"ANALYTICS\": true,\n            \"ANALYTICS_EXTRA_PROPERTY\": null,\n            \"ERROR_TRACKING\": true,\n            \"BETA_FEATURES\": false,\n            \"TOKEN_TTL\": \"4 hours\",\n            \"ALLOW_PERSISTENT_TOKENS\": false,\n            \"USE_CACHE\": true,\n            \"CURRENCY\": \"EUR\",\n            \"CURRENCY_FORMAT\": \"€\",\n            \"DECIMAL_SEPARATOR\": \".\",\n            \"CSV_DELIMITER\": \",\",\n            \"CSV_DECIMAL_SEPARATOR\": \".\",\n            \"THOUSAND_SEPARATOR\": \".\",\n            \"RATE_PRECISION\": 8,\n            \"REPORT_PRECISION\": 2,\n            \"SUMMARY_PRECISION\": 2,\n            \"QUANTITY_PRECISION\": 6,\n            \"PERCENTAGE_PRECISION\": 2,\n            \"DATE_FORMAT\": \"dd-MM-yyyy\",\n            \"SUMMARY_ADDRESS\": null,\n            \"SUMMARY_IMAGE\": null,\n            \"SUMMARY_TITLE\": \"Summary\",\n            \"SUMMARY_EXTRA\": \"Updated from Postman Test\",\n            \"SUMMARY_MIN_COMMIT\": \"Uplift for minimum commitment of {quantity} {label}\",\n            \"GRAPH_MAX_SERIES\": 15,\n            \"REPORT_START_MONTH\": 1,\n            \"DISCLAIMER_ENABLED\": false,\n            \"DISCLAIMER_TITLE\": \"Disclaimer\",\n            \"DISCLAIMER_TEXT\": \"\",\n            \"DISCLAIMER_AGREE_BUTTON_TEXT\": \"I agree\",\n            \"PASSWORD_POLICY\": \"length_dictionary\",\n            \"ADDITIONAL_CORS_ORIGINS\": null,\n            \"MAX_LOGIN_ATTEMPTS\": 5,\n            \"LOGIN_ATTEMPTS_INTERVAL\": null,\n            \"BLOCK_LOGIN_DURATION\": \"15 minutes\",\n            \"FINGERPRINTER\": \"secure_ip_useragent\"\n        }\n    }\n}"}],"_postman_id":"11ac3a0f-dac7-4e8b-9c45-a302c6cf0d69"}],"id":"1d972d31-1e7d-42a3-a140-e81d63b28ba1","description":"<h4 id=\"system-configuration-keys\">System Configuration Keys</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>key</strong></th>\n<th><strong>type</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>APP_DEBUG</td>\n<td><em>bool, default</em> <code>false</code></td>\n<td>Turn debug mode on/off. In debug more, a lot more log files are generated. Not recommended for production systems.</td>\n</tr>\n<tr>\n<td>APP_NAME</td>\n<td><em>string, default</em> <code>Exivity</code></td>\n<td>The name of the application</td>\n</tr>\n<tr>\n<td>APP_ICON</td>\n<td>string, max length: 1024 kilobytes</td>\n<td>Inline image, encoded in base64</td>\n</tr>\n<tr>\n<td>APP_LOGO</td>\n<td>string, max length: 512 kilobytes</td>\n<td>Inline image, encoded in base64</td>\n</tr>\n<tr>\n<td>APP_FAVICON</td>\n<td>string, max length: 5 kilobytes</td>\n<td>Website favicon. Inline image, encoded in base64</td>\n</tr>\n<tr>\n<td>APP_COLOUR</td>\n<td><em>string, default</em> <code>#00a8d8</code></td>\n<td>Brand colour</td>\n</tr>\n<tr>\n<td>APP_CSS</td>\n<td><em>string</em></td>\n<td>Custom CSS to use on the website</td>\n</tr>\n<tr>\n<td>APP_DOCUMENTATION</td>\n<td><em>bool, default</em> <code>true</code></td>\n<td>Enable to show documentation link in the website header.</td>\n</tr>\n<tr>\n<td>APP_LANGUAGE</td>\n<td><em>string, default</em> <code>en</code></td>\n<td></td>\n</tr>\n<tr>\n<td>FINGERPRINTER</td>\n<td><em>string, default</em> <code>secure_ip_useragent</code></td>\n<td>Fingerprint algorithm used to verify user location matches location where token was generated.  <br /><strong>secure</strong> - checks protocals match (e.g. http/https)  <br /><strong>ip</strong> - Checks the IP addresses match.  <br /><strong>useragent</strong> - Checks the request is coming from the same user agent.  <br />Possible values: <code>secure_ip_useragent</code> / <code>secure_useragent</code></td>\n</tr>\n<tr>\n<td>PUBLIC_ROOT</td>\n<td></td>\n<td>The default front-end URL clients should connect to. Fill out as <a href=\"https://example.com\">https://example.com</a>.</td>\n</tr>\n<tr>\n<td>SSO_LOGIN_METHOD</td>\n<td><em>in: local_user_or_ldap, local_user_only, local_user_or_saml, saml_only, local_user_or_ldap_or_saml**Default</em> <code>local_user_or_ldap</code></td>\n<td></td>\n</tr>\n<tr>\n<td>USE_LOCAL_STORAGE</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ANALYTICS</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ANALYTICS_EXTRA_PROPERTY</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ERROR_TRACKING</td>\n<td></td>\n<td>Enabling this option will report anonymous error metrics so we can make our product better.</td>\n</tr>\n<tr>\n<td>BETA_FEATURES</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>USE_CACHE</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CURRENCY</td>\n<td><em>string, default:</em> <code>EUR</code></td>\n<td></td>\n</tr>\n<tr>\n<td>CURRENCY_FORMAT</td>\n<td><em>string, default:</em> <code>€</code></td>\n<td></td>\n</tr>\n<tr>\n<td>DECIMAL_SEPARATOR</td>\n<td><em>string, default:</em> <code>.</code></td>\n<td></td>\n</tr>\n<tr>\n<td>CSV_DELIMITER</td>\n<td><em>in:</em> <code>,</code>, <code>;</code>, <code>:</code>, <code>\\t</code>, pipe  <br /><em>Default</em>: <code>,</code></td>\n<td>Field delimiter for CSV exports</td>\n</tr>\n<tr>\n<td>CSV_DECIMAL_SEPARATOR</td>\n<td><em>in:</em> <code>,</code>, <code>.</code>  <br /><em>Default:</em> <code>.</code></td>\n<td>Decimal separator for CSV exports</td>\n</tr>\n<tr>\n<td>THOUSAND_SEPARATOR</td>\n<td><em>nullable, in:</em> <code>,</code>, <code>.</code>, <code>'</code> or space  <br /><em>Default:</em> <code>,</code></td>\n<td></td>\n</tr>\n<tr>\n<td>RATE_PRECISION</td>\n<td><em>int, default:</em> <code>8</code></td>\n<td>Precision for rates as displayed on the summary report.</td>\n</tr>\n<tr>\n<td>REPORT_PRECISION</td>\n<td><em>int, default:</em> <code>2</code></td>\n<td>Precision for currency amounts displayed on reports other than summaries.</td>\n</tr>\n<tr>\n<td>SUMMARY_PRECISION</td>\n<td><em>int, default:</em> <code>2</code></td>\n<td>Precision for currency amounts displayed on the summary report.</td>\n</tr>\n<tr>\n<td>QUANTITY_PRECISION</td>\n<td><em>int, default:</em> <code>6</code></td>\n<td></td>\n</tr>\n<tr>\n<td>PERCENTAGE_PRECISION</td>\n<td><em>int, default:</em> <code>2</code></td>\n<td></td>\n</tr>\n<tr>\n<td>DATE_FORMAT</td>\n<td><em>string, default:</em> <code>dd-MM-yyyy</code></td>\n<td><a href=\"https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\">https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table</a></td>\n</tr>\n<tr>\n<td>SUMMARY_TITLE</td>\n<td><em>string, default</em> <code>Summary</code></td>\n<td></td>\n</tr>\n<tr>\n<td>SUMMARY_ADDRESS</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SUMMARY_IMAGE</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SUMMARY_EXTRA</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SUMMARY_MIN_COMMIT</td>\n<td><em>string, default</em> <code>Uplift for minimum commitment of {quantity} {label}</code></td>\n<td>Used as line item description for minimum commit uplifts. The identifier <code>{quantity}</code> will be replaced with the minimum commitment quantity, and <code>{label}</code> will be replaced with the unit label.</td>\n</tr>\n<tr>\n<td>GRAPH_MAX_SERIES</td>\n<td><em>int, default</em> <code>15</code></td>\n<td></td>\n</tr>\n<tr>\n<td>REPORT_START_MONTH</td>\n<td><em>int, default</em> <code>1</code></td>\n<td></td>\n</tr>\n<tr>\n<td>DISCLAIMER_ENABLED</td>\n<td><em>bool, default</em> <code>false</code></td>\n<td>Show disclaimer as a page overlay once to new users. Users will only be allowed to continue to the app if they agree with the disclaimer text.</td>\n</tr>\n<tr>\n<td>DISCLAIMER_TITLE</td>\n<td><em>string, default</em> <code>Disclaimer</code></td>\n<td>Title shown in the disclaimer overlay.</td>\n</tr>\n<tr>\n<td>DISCLAIMER_TEXT</td>\n<td><em>string</em></td>\n<td>Main disclaimer text shown in the disclaimer overlay. Markdown is supported.</td>\n</tr>\n<tr>\n<td>DISCLAIMER_AGREE_BUTTON_TEXT</td>\n<td><em>string, default</em> <code>I agree</code></td>\n<td>Button text shown in the disclaimer overlay which users have to click in order to continue to the app.</td>\n</tr>\n<tr>\n<td>TOKEN_TTL</td>\n<td><em>string, default</em> <code>4 hours</code></td>\n<td>Token lifetime - Set the token expiration time interval. Users will have to login again after their token expires.</td>\n</tr>\n<tr>\n<td>ALLOW_PERSISTENT_TOKENS</td>\n<td><em>bool, default</em> <code>false</code></td>\n<td>Allow users to remain logged in for duration of the token lifetime.</td>\n</tr>\n<tr>\n<td>PASSWORD_POLICY</td>\n<td><em>in: length, length_dictionary, length_dictionary_entropy.**Default</em> <code>length_dictionary</code></td>\n<td><code>length</code> - min 8 characters long  <br /><code>dictionary</code> - does not allow comon dictionary words.  <br /><code>entropy</code> - the <a href=\"https://en.wikipedia.org/wiki/Entropy_(information_theory)\">Shannon Entropy</a> of the characters must be greater than 3.5</td>\n</tr>\n<tr>\n<td>PASSWORD_MIN_LENGTH</td>\n<td>int, default <code>8</code> (min: <code>8</code>, max: <code>60</code>)</td>\n<td>Set the minimum length of the passwords used. Defaults to <code>8</code>.</td>\n</tr>\n<tr>\n<td>MAX_LOGIN_ATTEMPTS</td>\n<td><em>int, default</em> <code>5</code></td>\n<td></td>\n</tr>\n<tr>\n<td>LOGIN_ATTEMPTS_INTERVAL</td>\n<td><em>string</em></td>\n<td>If null, there's no limit, otherwise, <code>15 minutes</code>, <code>1 hour</code>, <code>2 hours</code>, <code>30 minutes</code>, etc.</td>\n</tr>\n<tr>\n<td>BLOCK_LOGIN_DURATION</td>\n<td><em>string, default</em> <code>15 minutes</code></td>\n<td><code>15 minutes</code>, <code>1 hour</code>, <code>2 hours</code>, <code>30 minutes</code>, etc.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a7f2d0bd-91a7-4c11-b860-b87844495dd2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f39a0d94-373d-49f1-8985-70e9cf4556fb","type":"text/javascript","exec":[""]}}],"_postman_id":"1d972d31-1e7d-42a3-a140-e81d63b28ba1"},{"name":"saml","item":[{"name":"Get SAML configuration","event":[{"listen":"test","script":{"id":"859e9356-1206-46bb-b280-9a5cd9011d98","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data).to.have.keys([","        \"type\",","        \"id\",","        \"attributes\"","    ]);","});"],"type":"text/javascript"}}],"id":"9929bd0d-f953-4c82-8718-ae3ae09f0f53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/configurations/saml","urlObject":{"path":["v2","configurations","saml"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9929bd0d-f953-4c82-8718-ae3ae09f0f53"},{"name":"Update SAML configuration","event":[{"listen":"test","script":{"id":"4cc67643-8a96-4714-a8f9-5271e7f2a4a4","exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","\r","const response = pm.response.json();\r","console.log(response);\r","\r","pm.test(\"Response contains configuration data\", function () {\r","    pm.expect(response.data).to.be.an('object');\r","});\r","\r","pm.test(\"Response contains new keys\", function () {\r","    pm.expect(response.data.attributes.SAML_ENTITY_ID).to.be.eql(\"https://test\");\r","});"],"type":"text/javascript"}}],"id":"52dc8c94-3c91-4b9c-931e-799539298142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{  \r\n   \"data\":{\r\n       \"type\": \"configuration\",\r\n       \"id\": \"saml\",\r\n       \"attributes\": {  \r\n          \"SAML_ENTITY_ID\": \"https://test\",\r\n          \"SAML_X509_CERTIFICATE\": \"...\"\r\n       }\r\n   }\r\n}"},"url":"{{base_url}}/v2/configurations/saml","urlObject":{"path":["v2","configurations","saml"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"52dc8c94-3c91-4b9c-931e-799539298142"}],"id":"08b7c97b-7343-4633-907a-e4d8dfc7e643","_postman_id":"08b7c97b-7343-4633-907a-e4d8dfc7e643","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"54727cb4-edf4-44bc-a690-42398893eb0c","id":"54727cb4-edf4-44bc-a690-42398893eb0c","name":"/configurations","type":"folder"}}},{"name":"services","item":[{"name":"Get system services config","event":[{"listen":"test","script":{"id":"402242e9-cc1e-4940-a0b5-d4fc1afa2244","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains configuration data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data).to.have.keys([","        \"type\",","        \"id\",","        \"attributes\"","    ]);","});","","pm.test(\"Response contains all keys\", function () {","    var required = [","        \"MAIL_HOST\",","        \"MAIL_PORT\",","        \"MAIL_USERNAME\",","        \"MAIL_PASSWORD\",","        \"MAIL_FROM_ADDRESS\",","        \"MAIL_FROM_NAME\",","        \"MAIL_DRIVER\",","        \"MAIL_ENCRYPTION\",","        \"NEXMO_KEY\",","        \"NEXMO_SECRET\",","        \"NEXMO_FROM_NUMBER\"","    ];","      ","    _.each(required, (item) => {","        pm.expect(response.data.attributes).to.have.property(item);","    });","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"d0f79d80-f36b-46be-aa94-da78f6d219bc","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"bac3983d-816e-41c3-a9bf-7fbbfe57f8e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/configurations/services","urlObject":{"path":["v2","configurations","services"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"24b9c240-2a12-48f9-bb2c-24e29bfd0710","name":"Get system services config","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/configurations/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 27 Feb 2024 14:30:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X8e3c0796ae850b3ecb708c9d392ad602"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X8e3c0796ae850b3ecb708c9d392ad602"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-TciOUxIWiWUeiXYmzkn7RasXOqUSR5QO';style-src 'self' 'nonce-TciOUxIWiWUeiXYmzkn7RasXOqUSR5QO';font-src 'self' data:"},{"key":"Request-Id","value":"d1a21dad-76dd-4ddd-8dbf-92acaeed4cca"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"configuration\",\n        \"id\": \"services\",\n        \"attributes\": {\n            \"LDAP_ACCOUNT_PREFIX\": null,\n            \"LDAP_ACCOUNT_SUFFIX\": null,\n            \"LDAP_BASE_DN\": null,\n            \"LDAP_DEFAULT_USERGROUP_ID\": null,\n            \"LDAP_EMAIL_FIELD\": \"mail\",\n            \"LDAP_ENCRYPTION\": null,\n            \"LDAP_HOSTS\": null,\n            \"LDAP_PORT\": \"389\",\n            \"LDAP_TIMEOUT\": \"5\",\n            \"LDAP_USERNAME_FIELD\": \"samAccountName\",\n            \"MAIL_DRIVER\": \"SMTP\",\n            \"MAIL_ENCRYPTION\": \"tls\",\n            \"MAIL_FROM_ADDRESS\": null,\n            \"MAIL_FROM_NAME\": \"MyApp\",\n            \"MAIL_HOST\": null,\n            \"MAIL_MAX_FILESIZE\": \"2e+7\",\n            \"MAIL_PASSWORD\": \"********\",\n            \"MAIL_PORT\": \"465\",\n            \"MAIL_USERNAME\": null,\n            \"NEXMO_FROM_NUMBER\": \"EXIVITY\",\n            \"NEXMO_KEY\": null,\n            \"NEXMO_SECRET\": \"********\"\n        }\n    }\n}"}],"_postman_id":"bac3983d-816e-41c3-a9bf-7fbbfe57f8e8"},{"name":"Update system services config","event":[{"listen":"test","script":{"id":"3d515670-2be5-4d98-894a-ca9b70277138","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","    pm.expect(response).to.have.keys([","        \"code\",","        \"message\",","        \"configuration\"","    ]);","    pm.expect(response.configuration).to.be.an('object');","    pm.expect(response.configuration.MAIL_FROM_NAME).to.equal(\"Updated from Postman Test\")","});"],"type":"text/javascript"}}],"id":"b575fbec-9540-4cc7-9723-83392f393767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{  \r\n   \"data\":{\r\n       \"type\": \"configuration\",\r\n       \"id\": \"services\",\r\n       \"attributes\": {  \r\n            \"MAIL_FROM_NAME\": \"MyApp\"\r\n       }\r\n   }\r\n}"},"url":"{{base_url}}/v2/configurations/services","urlObject":{"path":["v2","configurations","services"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"38045619-95f8-4cb0-abc2-6dc0516c2a09","name":"Update system services config","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{  \r\n   \"data\":{\r\n       \"type\": \"configuration\",\r\n       \"id\": \"services\",\r\n       \"attributes\": {  \r\n            \"MAIL_FROM_NAME\": \"MyNewApp\"\r\n       }\r\n   }\r\n}"},"url":"{{base_url}}/v2/configurations/services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.0"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Tue, 27 Feb 2024 14:32:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X8d450017736508c1f1c023587a45411f"},{"key":"X-Clockwork-Version","value":"9"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X8d450017736508c1f1c023587a45411f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-fft9xER8YVJTrA2CrP9hXLFa8mnpS2O6';style-src 'self' 'nonce-fft9xER8YVJTrA2CrP9hXLFa8mnpS2O6';font-src 'self' data:"},{"key":"Request-Id","value":"1d3292e0-92bf-4961-a1c7-8f018f7f6349"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"configuration\",\n        \"id\": \"services\",\n        \"attributes\": {\n            \"LDAP_ACCOUNT_PREFIX\": null,\n            \"LDAP_ACCOUNT_SUFFIX\": null,\n            \"LDAP_BASE_DN\": null,\n            \"LDAP_DEFAULT_USERGROUP_ID\": null,\n            \"LDAP_EMAIL_FIELD\": \"mail\",\n            \"LDAP_ENCRYPTION\": null,\n            \"LDAP_HOSTS\": null,\n            \"LDAP_PORT\": \"389\",\n            \"LDAP_TIMEOUT\": \"5\",\n            \"LDAP_USERNAME_FIELD\": \"samAccountName\",\n            \"MAIL_DRIVER\": \"SMTP\",\n            \"MAIL_ENCRYPTION\": \"tls\",\n            \"MAIL_FROM_ADDRESS\": null,\n            \"MAIL_FROM_NAME\": \"MyNewApp\",\n            \"MAIL_HOST\": null,\n            \"MAIL_MAX_FILESIZE\": \"2e+7\",\n            \"MAIL_PASSWORD\": \"********\",\n            \"MAIL_PORT\": \"465\",\n            \"MAIL_USERNAME\": null,\n            \"NEXMO_FROM_NUMBER\": \"EXIVITY\",\n            \"NEXMO_KEY\": null,\n            \"NEXMO_SECRET\": \"********\"\n        }\n    }\n}"}],"_postman_id":"b575fbec-9540-4cc7-9723-83392f393767"}],"id":"dbbcdd73-2875-4fa5-8bd8-985077405c18","_postman_id":"dbbcdd73-2875-4fa5-8bd8-985077405c18","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"54727cb4-edf4-44bc-a690-42398893eb0c","id":"54727cb4-edf4-44bc-a690-42398893eb0c","name":"/configurations","type":"folder"}}},{"name":"/configurationchecks","item":[{"name":"Check mail server","event":[{"listen":"test","script":{"id":"e73b0203-60a6-4a4f-b46c-dbf6a3f9c3de","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data attribute\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data).to.have.keys([","        \"type\",","        \"id\",","        \"attributes\"","    ]);","});","","pm.test(\"Response contains meta attribute\", function () {","    pm.expect(response.meta).to.be.an('object');","    pm.expect(response.meta).to.have.keys([","        \"status\",","        \"message\"","    ]);","});",""],"type":"text/javascript"}}],"id":"59ccb100-9fb3-49f7-b67c-d566540f22c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"data\":{\r\n       \"type\": \"configurationcheck\",\r\n       \"attributes\": {\r\n           \"check\": \"email\",\r\n           \"to\": \"email@exivity.com\"\r\n       }\r\n   }\r\n}\r\n"},"url":"{{base_url}}/v2/configurationchecks","urlObject":{"path":["v2","configurationchecks"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"59ccb100-9fb3-49f7-b67c-d566540f22c7"}],"id":"7d57df14-9196-4fde-9702-d4bdaa201120","_postman_id":"7d57df14-9196-4fde-9702-d4bdaa201120","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"54727cb4-edf4-44bc-a690-42398893eb0c","id":"54727cb4-edf4-44bc-a690-42398893eb0c","name":"/configurations","type":"folder"}}}],"id":"54727cb4-edf4-44bc-a690-42398893eb0c","description":"<p>The system can be configured using these endpoints.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"f1ac1f39-eefb-4d2c-9170-d9209331153e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4d6b233c-11e8-4ce0-9543-9a3500990677","type":"text/javascript","exec":[""]}}],"_postman_id":"54727cb4-edf4-44bc-a690-42398893eb0c"},{"name":"/auditentries","item":[{"name":"Get audit trail","event":[{"listen":"test","script":{"id":"9e488dac-f65c-4521-93ed-143afa5b9b03","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains audit data\", function () {","    pm.expect(response.data).to.be.an('array');","    pm.expect(response.data[0]).to.have.property('type');","    pm.expect(response.data[0]).to.have.property('id');","    pm.expect(response.data[0]).to.have.property('attributes');","});"],"type":"text/javascript","packages":{}}}],"id":"e3f4afe1-f429-49e7-9f34-59aba039829b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/auditentries?start=&end=&include=&page[limit]&page[offset]&sort&filter[attribute]","urlObject":{"path":["v2","auditentries"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>The start of the date range (inclusive) you want to view the audit trail for in <code>YYYY-MM-DD</code> format. Defaults to the current date.</p>\n","type":"text/plain"},"key":"start","value":""},{"description":{"content":"<p>The end of the date range (inclusive) you want to view the audit trail for in <code>YYYY-MM-DD</code> format. Defaults to the current date.</p>\n","type":"text/plain"},"key":"end","value":""},{"description":{"content":"<p>Include additional related resources. Possible values: <code>user</code></p>\n","type":"text/plain"},"key":"include","value":""},{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Optionally <a href=\"#working-with-the-api\">filter</a> results by this attribute.</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null}],"variable":[]}},"response":[{"id":"6395486c-db17-4783-918b-56af97bf446e","name":"Get audit trail","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/auditentries?start=&end=&include","host":["{{base_url}}"],"path":["v2","auditentries"],"query":[{"key":"start","value":"","description":"The start of the date range (inclusive) you want to view the audit trail for in `YYYY-MM-DD` format. Defaults to the current date."},{"key":"end","value":"","description":"The end of the date range (inclusive) you want to view the audit trail for in `YYYY-MM-DD` format. Defaults to the current date."},{"key":"include","value":null,"description":"Include additional related resources. Possible values: `user`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 17 May 2022 14:12:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-9lK1ZmgLDQDJqWoYCUYhT5OEGiHhFBSU';style-src 'self' 'nonce-9lK1ZmgLDQDJqWoYCUYhT5OEGiHhFBSU';font-src 'self' data:"},{"key":"Request-Id","value":"367f6966-08eb-4c1a-8be8-6617f0fd1530"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"audit\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"scaffold\",\n                \"category\": \"system\",\n                \"action\": \"modify\",\n                \"message\": \"Clean installation of Exivity version develop-gh-5897\",\n                \"created_at\": \"2022-05-17T13:42:10Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/1\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/1/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/1/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"user_id\": \"\",\n                \"user_name\": \"\",\n                \"component\": \"proximity\",\n                \"category\": \"database\",\n                \"action\": \"other\",\n                \"message\": \"Migration for \\\"WorkflowStepAttributes\\\" ran successfully\",\n                \"created_at\": \"2022-05-17T13:44:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/2\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/2/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/2/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"user_id\": \"\",\n                \"user_name\": \"\",\n                \"component\": \"proximity\",\n                \"category\": \"database\",\n                \"action\": \"other\",\n                \"message\": \"Added tier_breakdown to tables: none\",\n                \"created_at\": \"2022-05-17T13:44:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/3\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/3/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/3/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"user_id\": \"\",\n                \"user_name\": \"\",\n                \"component\": \"proximity\",\n                \"category\": \"usergroup\",\n                \"action\": \"create\",\n                \"message\": \"Usergroup 'admins' with id=1 created\",\n                \"created_at\": \"2022-05-17T13:44:57Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/4\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/4/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/4/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"user_id\": \"\",\n                \"user_name\": \"\",\n                \"component\": \"proximity\",\n                \"category\": \"user\",\n                \"action\": \"create\",\n                \"message\": \"User 'admin' with id=c690d9a8-7ca5-4a4d-9944-3e89f3e2ca18 created\",\n                \"created_at\": \"2022-05-17T13:44:57Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/5\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/5/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/5/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'allauto.usage' for 20170825\",\n                \"created_at\": \"2022-05-17T13:45:19Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/6\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/6/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/6/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'allauto.usage' for 20170826\",\n                \"created_at\": \"2022-05-17T13:45:20Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/7\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/7/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/7/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'allauto.usage' for 20170827\",\n                \"created_at\": \"2022-05-17T13:45:21Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/8\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/8/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/8/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Report 'Test Report v7' created\",\n                \"created_at\": \"2022-05-17T13:45:22Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/9\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/9/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/9/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"account\",\n                \"action\": \"create\",\n                \"message\": \"46 accounts were added to the global database\",\n                \"created_at\": \"2022-05-17T13:45:22Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/10\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/10/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/10/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'Test Report v7' for 20170825 (20 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:45:22Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/11\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/11/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/11/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'Test Report v7' for 20170826 (20 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:45:22Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/12\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/12/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/12/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"13\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'Test Report v7' for 20170827 (20 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:45:22Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/13\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/13/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/13/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"14\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220417\",\n                \"created_at\": \"2022-05-17T13:45:48Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/14\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/14/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/14/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"15\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220418\",\n                \"created_at\": \"2022-05-17T13:45:52Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/15\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/15/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/15/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"16\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220419\",\n                \"created_at\": \"2022-05-17T13:45:56Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/16\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/16/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/16/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"17\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220420\",\n                \"created_at\": \"2022-05-17T13:46:00Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/17\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/17/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/17/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"18\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220421\",\n                \"created_at\": \"2022-05-17T13:46:04Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/18\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/18/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/18/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"19\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220422\",\n                \"created_at\": \"2022-05-17T13:46:08Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/19\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/19/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/19/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"20\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220423\",\n                \"created_at\": \"2022-05-17T13:46:12Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/20\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/20/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/20/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"21\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220424\",\n                \"created_at\": \"2022-05-17T13:46:16Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/21\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/21/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/21/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"22\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220425\",\n                \"created_at\": \"2022-05-17T13:46:21Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/22\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/22/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/22/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"23\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220426\",\n                \"created_at\": \"2022-05-17T13:46:25Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/23\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/23/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/23/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"24\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220427\",\n                \"created_at\": \"2022-05-17T13:46:29Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/24\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/24/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/24/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"25\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220428\",\n                \"created_at\": \"2022-05-17T13:46:33Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/25\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/25/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/25/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"26\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220429\",\n                \"created_at\": \"2022-05-17T13:46:37Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/26\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/26/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/26/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"27\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220430\",\n                \"created_at\": \"2022-05-17T13:46:41Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/27\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/27/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/27/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"28\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220501\",\n                \"created_at\": \"2022-05-17T13:46:45Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/28\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/28/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/28/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"29\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220502\",\n                \"created_at\": \"2022-05-17T13:46:49Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/29\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/29/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/29/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"30\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220503\",\n                \"created_at\": \"2022-05-17T13:46:53Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/30\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/30/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/30/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"31\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220504\",\n                \"created_at\": \"2022-05-17T13:46:57Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/31\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/31/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/31/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"32\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220505\",\n                \"created_at\": \"2022-05-17T13:47:01Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/32\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/32/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/32/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"33\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220506\",\n                \"created_at\": \"2022-05-17T13:47:05Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/33\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/33/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/33/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"34\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220507\",\n                \"created_at\": \"2022-05-17T13:47:09Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/34\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/34/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/34/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"35\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220508\",\n                \"created_at\": \"2022-05-17T13:47:14Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/35\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/35/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/35/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"36\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220509\",\n                \"created_at\": \"2022-05-17T13:47:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/36\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/36/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/36/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"37\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220510\",\n                \"created_at\": \"2022-05-17T13:47:22Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/37\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/37/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/37/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"38\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220511\",\n                \"created_at\": \"2022-05-17T13:47:26Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/38\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/38/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/38/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"39\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220512\",\n                \"created_at\": \"2022-05-17T13:47:30Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/39\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/39/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/39/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"40\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220513\",\n                \"created_at\": \"2022-05-17T13:47:34Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/40\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/40/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/40/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"41\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220514\",\n                \"created_at\": \"2022-05-17T13:47:38Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/41\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/41/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/41/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"42\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220515\",\n                \"created_at\": \"2022-05-17T13:47:42Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/42\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/42/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/42/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"43\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220516\",\n                \"created_at\": \"2022-05-17T13:47:46Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/43\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/43/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/43/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"44\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'csp_acme.consolidated' for 20220517\",\n                \"created_at\": \"2022-05-17T13:47:50Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/44\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/44/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/44/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"45\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Report 'IT Services Consumption' created\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/45\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/45/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/45/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"46\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"account\",\n                \"action\": \"create\",\n                \"message\": \"1799 accounts were added to the global database\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/46\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/46/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/46/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"47\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220417 (7752 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/47\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/47/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/47/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"48\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220418 (7778 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/48\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/48/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/48/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"49\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220419 (7780 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/49\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/49/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/49/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"50\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220420 (7773 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/50\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/50/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/50/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"51\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220421 (7758 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/51\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/51/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/51/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"52\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220422 (7759 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/52\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/52/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/52/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"53\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220423 (7779 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/53\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/53/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/53/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"54\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220424 (7783 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/54\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/54/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/54/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"55\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220425 (7789 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/55\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/55/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/55/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"56\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220426 (7790 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/56\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/56/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/56/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"57\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220427 (7775 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/57\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/57/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/57/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"58\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220428 (7778 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/58\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/58/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/58/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"59\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220429 (7786 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/59\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/59/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/59/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"60\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220430 (7787 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/60\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/60/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/60/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"61\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220501 (7867 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/61\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/61/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/61/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"62\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220502 (7880 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/62\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/62/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/62/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"63\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220503 (7859 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/63\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/63/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/63/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"64\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220504 (7882 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/64\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/64/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/64/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"65\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220505 (7864 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/65\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/65/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/65/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"66\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220506 (7887 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/66\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/66/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/66/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"67\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220507 (7889 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/67\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/67/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/67/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"68\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220508 (7892 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/68\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/68/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/68/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"69\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220509 (7892 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/69\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/69/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/69/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"70\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220510 (7891 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/70\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/70/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/70/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"71\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220511 (7870 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/71\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/71/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/71/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"72\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220512 (8255 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/72\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/72/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/72/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"73\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220513 (8337 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/73\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/73/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/73/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"74\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220514 (7935 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/74\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/74/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/74/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"75\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220515 (7986 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/75\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/75/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/75/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"76\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220516 (7892 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/76\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/76/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/76/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"77\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'IT Services Consumption' for 20220517 (7876 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:47:51Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/77\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/77/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/77/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"78\",\n            \"attributes\": {\n                \"user_id\": \"<unknown>\",\n                \"user_name\": \"<unknown>\",\n                \"component\": \"transcript\",\n                \"category\": \"rdf\",\n                \"action\": \"create\",\n                \"message\": \"Created RDF 'dummy-data.dummy-usage' for 20200101\",\n                \"created_at\": \"2022-05-17T13:52:10Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/78\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/78/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/78/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"79\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Report 'dummy-report' created\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/79\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/79/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/79/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"80\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"account\",\n                \"action\": \"create\",\n                \"message\": \"203 accounts were added to the global database\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/80\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/80/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/80/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"81\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200101 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/81\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/81/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/81/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"82\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200102 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/82\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/82/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/82/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"83\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200103 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/83\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/83/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/83/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"84\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200104 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/84\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/84/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/84/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"85\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200105 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/85\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/85/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/85/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"86\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200106 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/86\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/86/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/86/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"87\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200107 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/87\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/87/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/87/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"88\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200108 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/88\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/88/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/88/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"89\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200109 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/89\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/89/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/89/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"90\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200110 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/90\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/90/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/90/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"91\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200111 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/91\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/91/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/91/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"92\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200112 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/92\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/92/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/92/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"93\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200113 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/93\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/93/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/93/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"94\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200114 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/94\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/94/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/94/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"95\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200115 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/95\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/95/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/95/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"96\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200116 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/96\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/96/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/96/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"97\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200117 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/97\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/97/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/97/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"98\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200118 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/98\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/98/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/98/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"99\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200119 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/99\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/99/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/99/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"100\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200120 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/100\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/100/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/100/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"101\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200121 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/101\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/101/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/101/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"102\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200122 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/102\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/102/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/102/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"103\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200123 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/103\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/103/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/103/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"104\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200124 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/104\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/104/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/104/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"105\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200125 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/105\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/105/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/105/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"106\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200126 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/106\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/106/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/106/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"107\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200127 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/107\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/107/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/107/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"108\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200128 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/108\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/108/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/108/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"109\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200129 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/109\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/109/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/109/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"110\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200130 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/110\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/110/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/110/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"111\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200131 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/111\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/111/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/111/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"112\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200201 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/112\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/112/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/112/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"113\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200202 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/113\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/113/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/113/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"114\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200203 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/114\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/114/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/114/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"115\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200204 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/115\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/115/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/115/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"116\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200205 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/116\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/116/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/116/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"117\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200206 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/117\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/117/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/117/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"118\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200207 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/118\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/118/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/118/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"119\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200208 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/119\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/119/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/119/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"120\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200209 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/120\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/120/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/120/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"121\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200210 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/121\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/121/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/121/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"122\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200211 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/122\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/122/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/122/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"123\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200212 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/123\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/123/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/123/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"124\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200213 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/124\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/124/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/124/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"125\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200214 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/125\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/125/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/125/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"126\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200215 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/126\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/126/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/126/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"127\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200216 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/127\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/127/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/127/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"128\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200217 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/128\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/128/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/128/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"129\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200218 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/129\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/129/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/129/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"130\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200219 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/130\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/130/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/130/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"131\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200220 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/131\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/131/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/131/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"132\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200221 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/132\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/132/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/132/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"133\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200222 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/133\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/133/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/133/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"134\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200223 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/134\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/134/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/134/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"135\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200224 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/135\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/135/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/135/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"136\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200225 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/136\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/136/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/136/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"137\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200226 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/137\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/137/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/137/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"138\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200227 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/138\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/138/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/138/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"139\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200228 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/139\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/139/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/139/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"140\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200229 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/140\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/140/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/140/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"141\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200301 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/141\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/141/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/141/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"142\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200302 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/142\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/142/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/142/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"143\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200303 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/143\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/143/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/143/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"144\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200304 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/144\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/144/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/144/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"145\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200305 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/145\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/145/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/145/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"146\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200306 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/146\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/146/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/146/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"147\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200307 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/147\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/147/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/147/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"148\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200308 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/148\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/148/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/148/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"149\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200309 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/149\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/149/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/149/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"150\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200310 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/150\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/150/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/150/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"151\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200311 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/151\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/151/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/151/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"152\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200312 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/152\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/152/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/152/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"153\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200313 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/153\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/153/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/153/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"154\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200314 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/154\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/154/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/154/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"155\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200315 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/155\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/155/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/155/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"156\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200316 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/156\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/156/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/156/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"157\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200317 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/157\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/157/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/157/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"158\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200318 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/158\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/158/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/158/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"159\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200319 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/159\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/159/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/159/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"160\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200320 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/160\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/160/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/160/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"161\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200321 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/161\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/161/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/161/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"162\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200322 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/162\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/162/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/162/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"163\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200323 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/163\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/163/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/163/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"164\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200324 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/164\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/164/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/164/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"165\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200325 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/165\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/165/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/165/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"166\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200326 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/166\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/166/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/166/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"167\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200327 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/167\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/167/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/167/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"168\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200328 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/168\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/168/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/168/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"169\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200329 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/169\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/169/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/169/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"170\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200330 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/170\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/170/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/170/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"171\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200331 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/171\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/171/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/171/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"172\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200401 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/172\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/172/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/172/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"173\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200402 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/173\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/173/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/173/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"174\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200403 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/174\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/174/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/174/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"175\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200404 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/175\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/175/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/175/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"176\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200405 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/176\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/176/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/176/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"177\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200406 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/177\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/177/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/177/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"178\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200407 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/178\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/178/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/178/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"179\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200408 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/179\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/179/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/179/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"180\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200409 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/180\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/180/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/180/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"181\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200410 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/181\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/181/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/181/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"182\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200411 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/182\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/182/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/182/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"183\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200412 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/183\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/183/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/183/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"184\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200413 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/184\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/184/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/184/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"185\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200414 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/185\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/185/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/185/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"186\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200415 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/186\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/186/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/186/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"187\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200416 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/187\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/187/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/187/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"188\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200417 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/188\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/188/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/188/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"189\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200418 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/189\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/189/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/189/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"190\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200419 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/190\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/190/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/190/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"191\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200420 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/191\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/191/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/191/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"192\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200421 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/192\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/192/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/192/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"193\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200422 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/193\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/193/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/193/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"194\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200423 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/194\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/194/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/194/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"195\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200424 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/195\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/195/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/195/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"196\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200425 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/196\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/196/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/196/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"197\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200426 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/197\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/197/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/197/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"198\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200427 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/198\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/198/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/198/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"199\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200428 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/199\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/199/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/199/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"200\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200429 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/200\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/200/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/200/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"201\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200430 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/201\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/201/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/201/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"202\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200501 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/202\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/202/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/202/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"203\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200502 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/203\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/203/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/203/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"204\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200503 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/204\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/204/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/204/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"205\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200504 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/205\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/205/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/205/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"206\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200505 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/206\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/206/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/206/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"207\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200506 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/207\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/207/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/207/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"208\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200507 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/208\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/208/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/208/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"209\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200508 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/209\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/209/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/209/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"210\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200509 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/210\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/210/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/210/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"211\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200510 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/211\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/211/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/211/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"212\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200511 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/212\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/212/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/212/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"213\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200512 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/213\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/213/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/213/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"214\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200513 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/214\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/214/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/214/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"215\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200514 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/215\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/215/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/215/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"216\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200515 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/216\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/216/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/216/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"217\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200516 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/217\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/217/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/217/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"218\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200517 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/218\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/218/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/218/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"219\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200518 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/219\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/219/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/219/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"220\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200519 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/220\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/220/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/220/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"221\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200520 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/221\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/221/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/221/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"222\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200521 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/222\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/222/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/222/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"223\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200522 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/223\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/223/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/223/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"224\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200523 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/224\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/224/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/224/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"225\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200524 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/225\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/225/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/225/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"226\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200525 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/226\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/226/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/226/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"227\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200526 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/227\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/227/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/227/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"228\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200527 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/228\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/228/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/228/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"229\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200528 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/229\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/229/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/229/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"230\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200529 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/230\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/230/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/230/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"231\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200530 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/231\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/231/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/231/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"232\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200531 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/232\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/232/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/232/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"233\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200601 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/233\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/233/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/233/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"234\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200602 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/234\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/234/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/234/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"235\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200603 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/235\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/235/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/235/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"236\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200604 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/236\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/236/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/236/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"237\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200605 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/237\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/237/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/237/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"238\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200606 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/238\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/238/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/238/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"239\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200607 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/239\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/239/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/239/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"240\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200608 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/240\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/240/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/240/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"241\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200609 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/241\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/241/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/241/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"242\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200610 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/242\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/242/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/242/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"243\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200611 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/243\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/243/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/243/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"244\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200612 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/244\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/244/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/244/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"245\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200613 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/245\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/245/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/245/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"246\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200614 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/246\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/246/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/246/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"247\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200615 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/247\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/247/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/247/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"248\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200616 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/248\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/248/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/248/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"249\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200617 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/249\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/249/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/249/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"250\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200618 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/250\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/250/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/250/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"251\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200619 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/251\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/251/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/251/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"252\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200620 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/252\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/252/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/252/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"253\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200621 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/253\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/253/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/253/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"254\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200622 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/254\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/254/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/254/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"255\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200623 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/255\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/255/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/255/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"256\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200624 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/256\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/256/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/256/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"257\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200625 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/257\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/257/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/257/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"258\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200626 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/258\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/258/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/258/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"259\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200627 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/259\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/259/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/259/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"260\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200628 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/260\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/260/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/260/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"261\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200629 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/261\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/261/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/261/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"262\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200630 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/262\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/262/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/262/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"263\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200701 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/263\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/263/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/263/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"264\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200702 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/264\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/264/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/264/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"265\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200703 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/265\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/265/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/265/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"266\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200704 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/266\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/266/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/266/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"267\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200705 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/267\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/267/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/267/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"268\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200706 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/268\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/268/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/268/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"269\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200707 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/269\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/269/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/269/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"270\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200708 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/270\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/270/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/270/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"271\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200709 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/271\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/271/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/271/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"272\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200710 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/272\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/272/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/272/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"273\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200711 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/273\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/273/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/273/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"274\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200712 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/274\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/274/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/274/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"275\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200713 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/275\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/275/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/275/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"276\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200714 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/276\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/276/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/276/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"277\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200715 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/277\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/277/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/277/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"278\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200716 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/278\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/278/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/278/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"279\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200717 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/279\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/279/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/279/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"280\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200718 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/280\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/280/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/280/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"281\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200719 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/281\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/281/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/281/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"282\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200720 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/282\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/282/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/282/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"283\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200721 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/283\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/283/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/283/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"284\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200722 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/284\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/284/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/284/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"285\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200723 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/285\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/285/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/285/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"286\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200724 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/286\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/286/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/286/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"287\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200725 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/287\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/287/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/287/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"288\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200726 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/288\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/288/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/288/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"289\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200727 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/289\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/289/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/289/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"290\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200728 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/290\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/290/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/290/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"291\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200729 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/291\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/291/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/291/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"292\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200730 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/292\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/292/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/292/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"293\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200731 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/293\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/293/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/293/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"294\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200801 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/294\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/294/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/294/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"295\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200802 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/295\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/295/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/295/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"296\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200803 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/296\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/296/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/296/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"297\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200804 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/297\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/297/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/297/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"298\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200805 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/298\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/298/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/298/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"299\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200806 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/299\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/299/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/299/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"300\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200807 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/300\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/300/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/300/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"301\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200808 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/301\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/301/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/301/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"302\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200809 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/302\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/302/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/302/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"303\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200810 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/303\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/303/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/303/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"304\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200811 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/304\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/304/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/304/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"305\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200812 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/305\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/305/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/305/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"306\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200813 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/306\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/306/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/306/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"307\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200814 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/307\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/307/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/307/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"308\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200815 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/308\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/308/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/308/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"309\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200816 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/309\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/309/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/309/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"310\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200817 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/310\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/310/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/310/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"311\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200818 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/311\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/311/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/311/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"312\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200819 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/312\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/312/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/312/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"313\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200820 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/313\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/313/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/313/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"314\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200821 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/314\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/314/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/314/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"315\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200822 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/315\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/315/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/315/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"316\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200823 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/316\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/316/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/316/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"317\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200824 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/317\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/317/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/317/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"318\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200825 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/318\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/318/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/318/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"319\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200826 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/319\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/319/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/319/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"320\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200827 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/320\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/320/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/320/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"321\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200828 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/321\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/321/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/321/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"322\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200829 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/322\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/322/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/322/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"323\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200830 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/323\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/323/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/323/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"324\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200831 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/324\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/324/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/324/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"325\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200901 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/325\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/325/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/325/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"326\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200902 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/326\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/326/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/326/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"327\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200903 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/327\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/327/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/327/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"328\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200904 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/328\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/328/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/328/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"329\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200905 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/329\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/329/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/329/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"330\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200906 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/330\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/330/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/330/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"331\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200907 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/331\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/331/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/331/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"332\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200908 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/332\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/332/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/332/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"333\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200909 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/333\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/333/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/333/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"334\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200910 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/334\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/334/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/334/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"335\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200911 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/335\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/335/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/335/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"336\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200912 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/336\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/336/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/336/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"337\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200913 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/337\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/337/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/337/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"338\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200914 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/338\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/338/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/338/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"339\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200915 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/339\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/339/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/339/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"340\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200916 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/340\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/340/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/340/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"341\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200917 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/341\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/341/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/341/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"342\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200918 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/342\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/342/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/342/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"343\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200919 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/343\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/343/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/343/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"344\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200920 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/344\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/344/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/344/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"345\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200921 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/345\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/345/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/345/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"346\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200922 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/346\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/346/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/346/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"347\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200923 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/347\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/347/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/347/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"348\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200924 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/348\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/348/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/348/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"349\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200925 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/349\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/349/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/349/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"350\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200926 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/350\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/350/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/350/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"351\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200927 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/351\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/351/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/351/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"352\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200928 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/352\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/352/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/352/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"353\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200929 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/353\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/353/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/353/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"354\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20200930 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/354\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/354/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/354/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"355\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201001 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/355\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/355/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/355/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"356\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201002 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/356\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/356/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/356/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"357\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201003 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/357\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/357/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/357/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"358\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201004 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/358\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/358/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/358/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"359\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201005 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/359\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/359/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/359/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"360\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201006 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/360\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/360/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/360/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"361\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201007 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/361\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/361/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/361/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"362\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201008 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/362\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/362/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/362/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"363\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201009 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/363\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/363/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/363/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"364\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201010 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/364\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/364/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/364/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"365\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201011 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/365\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/365/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/365/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"366\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201012 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/366\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/366/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/366/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"367\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201013 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/367\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/367/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/367/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"368\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201014 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/368\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/368/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/368/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"369\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201015 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/369\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/369/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/369/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"370\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201016 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/370\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/370/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/370/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"371\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201017 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/371\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/371/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/371/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"372\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201018 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/372\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/372/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/372/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"373\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201019 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/373\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/373/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/373/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"374\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201020 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/374\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/374/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/374/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"375\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201021 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/375\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/375/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/375/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"376\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201022 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/376\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/376/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/376/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"377\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201023 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/377\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/377/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/377/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"378\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201024 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/378\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/378/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/378/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"379\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201025 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/379\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/379/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/379/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"380\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201026 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/380\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/380/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/380/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"381\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201027 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/381\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/381/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/381/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"382\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201028 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/382\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/382/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/382/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"383\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201029 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/383\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/383/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/383/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"384\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201030 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/384\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/384/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/384/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"385\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201031 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/385\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/385/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/385/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"386\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201101 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/386\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/386/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/386/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"387\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201102 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/387\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/387/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/387/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"388\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201103 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/388\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/388/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/388/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"389\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201104 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/389\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/389/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/389/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"390\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201105 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/390\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/390/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/390/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"391\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201106 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/391\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/391/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/391/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"392\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201107 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/392\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/392/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/392/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"393\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201108 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/393\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/393/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/393/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"394\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201109 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/394\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/394/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/394/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"395\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201110 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/395\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/395/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/395/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"396\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201111 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/396\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/396/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/396/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"397\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201112 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/397\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/397/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/397/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"398\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201113 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/398\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/398/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/398/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"399\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201114 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/399\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/399/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/399/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"400\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201115 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/400\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/400/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/400/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"401\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201116 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/401\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/401/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/401/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"402\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201117 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/402\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/402/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/402/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"403\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201118 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/403\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/403/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/403/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"404\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201119 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/404\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/404/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/404/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"405\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201120 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/405\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/405/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/405/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"406\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201121 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/406\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/406/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/406/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"407\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201122 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/407\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/407/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/407/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"408\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201123 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/408\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/408/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/408/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"409\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201124 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/409\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/409/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/409/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"410\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201125 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/410\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/410/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/410/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"411\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201126 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/411\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/411/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/411/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"412\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201127 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/412\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/412/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/412/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"413\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201128 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/413\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/413/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/413/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"414\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201129 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/414\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/414/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/414/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"415\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201130 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/415\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/415/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/415/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"416\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201201 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/416\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/416/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/416/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"417\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201202 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/417\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/417/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/417/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"418\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201203 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/418\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/418/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/418/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"419\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201204 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/419\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/419/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/419/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"420\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201205 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/420\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/420/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/420/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"421\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201206 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/421\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/421/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/421/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"422\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201207 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/422\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/422/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/422/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"423\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201208 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/423\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/423/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/423/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"424\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201209 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/424\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/424/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/424/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"425\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201210 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/425\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/425/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/425/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"426\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201211 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/426\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/426/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/426/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"427\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201212 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/427\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/427/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/427/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"428\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201213 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/428\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/428/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/428/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"429\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201214 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/429\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/429/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/429/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"430\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201215 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/430\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/430/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/430/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"431\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201216 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/431\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/431/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/431/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"432\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201217 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/432\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/432/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/432/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"433\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201218 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/433\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/433/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/433/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"434\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201219 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/434\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/434/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/434/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"435\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201220 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/435\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/435/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/435/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"436\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201221 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/436\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/436/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/436/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"437\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201222 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/437\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/437/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/437/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"438\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201223 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/438\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/438/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/438/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"439\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201224 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/439\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/439/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/439/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"440\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201225 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/440\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/440/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/440/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"441\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201226 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/441\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/441/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/441/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"442\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201227 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/442\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/442/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/442/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"443\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201228 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/443\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/443/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/443/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"444\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201229 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/444\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/444/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/444/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"445\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201230 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/445\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/445/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/445/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"446\",\n            \"attributes\": {\n                \"user_id\": \"ybb3\",\n                \"user_name\": \"\",\n                \"component\": \"edify\",\n                \"category\": \"report\",\n                \"action\": \"create\",\n                \"message\": \"Prepared report 'dummy-report' for 20201231 (857 report cache entries)\",\n                \"created_at\": \"2022-05-17T13:53:18Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/446\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/446/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/446/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"447\",\n            \"attributes\": {\n                \"user_id\": \"c690d9a8-7ca5-4a4d-9944-3e89f3e2ca18\",\n                \"user_name\": \"admin\",\n                \"component\": \"proximity\",\n                \"category\": \"user\",\n                \"action\": \"create\",\n                \"message\": \"UserKey 'jwt_key_32 for user c690d9a8-7ca5-4a4d-9944-3e89f3e2ca18' with id=1 created\",\n                \"created_at\": \"2022-05-17T14:03:20Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/447\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/447/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/447/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"audit\",\n            \"id\": \"448\",\n            \"attributes\": {\n                \"user_id\": \"c690d9a8-7ca5-4a4d-9944-3e89f3e2ca18\",\n                \"user_name\": \"admin\",\n                \"component\": \"proximity\",\n                \"category\": \"user\",\n                \"action\": \"login\",\n                \"message\": \"Created token from 127.0.0.1\",\n                \"created_at\": \"2022-05-17T14:03:20Z\"\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/audits/448\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/audits/448/relationships/user\",\n                        \"related\": \"https://dev.exivity.net/v2/audits/448/user\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"e3f4afe1-f429-49e7-9f34-59aba039829b"}],"id":"6d705692-f9b7-41cd-bf40-1d39253ebfef","description":"<p>Atomic support: ❌</p>\n<h2 id=\"the-audit-object\">The Audit Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>mutability</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_id</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>user_name</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>component</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td><code>scaffold</code>, <code>proximity</code>, <code>transcript</code>, <code>edify</code></td>\n</tr>\n<tr>\n<td>category</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td><code>budget</code>, <code>extractor</code>, <code>rate</code>, <code>rdf</code>, <code>report</code>, <code>service</code>, <code>subscription</code>, <code>system</code>, <code>transformer</code>, <code>user</code>, <code>usergroup</code>, <code>workflow</code></td>\n</tr>\n<tr>\n<td>action</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td><code>login</code>, <code>access</code>, <code>create</code>, <code>modify</code>, <code>delete</code>, <code>other</code></td>\n</tr>\n<tr>\n<td>message</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>created_at</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>relationships</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>relationship</th>\n<th>cardinality</th>\n<th>type</th>\n<th>required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>hasOne</td>\n<td>user</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d6c0f6d5-6488-437e-88f2-6b077c2e9dcf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a5589975-2c91-42bb-9e96-677c3ddad1da","type":"text/javascript","exec":[""]}}],"_postman_id":"6d705692-f9b7-41cd-bf40-1d39253ebfef","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"/logs","item":[{"name":"Retrieve logfiles","event":[{"listen":"test","script":{"id":"29bf8f21-5497-428c-a397-645446581335","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains logs\", function () {","    pm.expect(response.data).to.be.an('array');","    pm.expect(response.data[0].type).to.eql(\"logfile\");","    pm.expect(response.data[0].id).to.be.a(\"string\");","    pm.expect(response.data[0].attributes).to.be.an(\"object\");","});","","// Next request","","const components = [\"proximity\", \"pigeon\", \"use\", \"transcript\", \"edify\", \"chronos\", \"horizon\", \"merlin\", \"griffon\"];","const previousComponent = pm.environment.get(\"component\");","const nextComponent = components[components.indexOf(previousComponent) + 1];","","pm.environment.set(\"component\", nextComponent);","","if (nextComponent) {","    postman.setNextRequest(\"Retrieve logfiles\");","} else {","    postman.setNextRequest(\"Get a full data dump\");","}"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"cceeced6-0338-4436-bf07-c7390e900c1f","exec":["const component = pm.environment.get(\"component\");","","if (!component) {","    pm.environment.set(\"component\", \"proximity\");","}"],"type":"text/javascript"}}],"id":"1519c7da-15d3-4c2e-a658-0cadd6eccf4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/logs?component=&limit=&filter=&truncate=","urlObject":{"path":["v2","logs"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon</p>\n","type":"text/plain"},"key":"component","value":""},{"description":{"content":"<p>Limit the maximum number of logfiles to return. Defaults to <code>100</code>.</p>\n","type":"text/plain"},"key":"limit","value":""},{"description":{"content":"<p>Optionally filter the logfiles by filename. Use the asterisk (<code>*</code>) for wildcard matching.</p>\n","type":"text/plain"},"key":"filter","value":""},{"description":{"content":"<p>Whether to truncate the logfile lines. Use <code>0</code> to not disable truncating, or specify a number to receive the last <code>x</code> lines. Defaults to <code>1000</code>.</p>\n","type":"text/plain"},"key":"truncate","value":""}],"variable":[]}},"response":[{"id":"143b3efb-7292-4218-beb1-fa2b2b2de3f8","name":"Proximity","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=proximity&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"proximity","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:07:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-zRcF2sUJ7c8hzfvIFGK0DoWQQS49VBxq';style-src 'self' 'nonce-zRcF2sUJ7c8hzfvIFGK0DoWQQS49VBxq';font-src 'self' data:"},{"key":"Request-Id","value":"e858fbf7-2d45-4bce-86dc-ae4054ff6a43"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"proximity-2022-05-16.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T07:48:40Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T08:21:48.583+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.585+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.585+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Client generated IDs are not allowed.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException(code: 0): Client generated IDs are not allowed. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:127)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"message\": \"Client generated IDs are not allowed.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.540+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.545+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.592+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.604+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.606+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.628+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.628+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"5b88f331-ed06-4951-bc45-2c6475d35e3e\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.841+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.845+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.890+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.903+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.903+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.904+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.991+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.995+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Variable\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"variable\",\n                                    \"attributes\": {\n                                        \"name\": \"Appie\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Variable restEndpoint - validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"Appie\"\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.004+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.005+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The value field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"rules\": {\n                                \"name\": \"required|string\",\n                                \"value\": \"required|string\",\n                                \"encrypted\": \"boolean\",\n                                \"environment_id\": \"required|numeric|exists:environment,id\"\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.007+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.007+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The value field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The value field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.009+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.009+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.010+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The value field is required.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.256+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.303+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.316+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.316+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.317+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.328+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.328+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.329+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.329+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.402+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Variable\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"variable\",\n                                    \"attributes\": {\n                                        \"name\": \"Appie\",\n                                        \"value\": \"mosterd\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Variable restEndpoint - validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"Appie\",\n                                \"value\": \"mosterd\"\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.415+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.416+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The environment id field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"rules\": {\n                                \"name\": \"required|string\",\n                                \"value\": \"required|string\",\n                                \"encrypted\": \"boolean\",\n                                \"environment_id\": \"required|numeric|exists:environment,id\"\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.418+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.418+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The environment id field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The environment id field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.420+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.420+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.421+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The environment id field is required.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.020+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.065+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.094+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.094+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.096+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.098+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.934+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.938+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.985+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.012+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.012+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.013+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.015+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.015+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.450+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.500+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.529+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.529+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.530+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.532+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.534+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.702+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.706+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.755+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.768+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.769+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.769+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.846+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.846+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.847+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.855+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.859+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.863+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.867+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.867+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.868+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.869+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.869+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.871+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.871+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.872+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.873+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.873+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.679+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.683+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.757+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.826+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.826+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.829+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.838+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.838+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.840+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.840+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.732+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.736+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.782+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.817+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"eb53ec43-e73c-4d91-9090-475e7c2f422f\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.818+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.819+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.819+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:29.974+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:29.978+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.024+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.057+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.058+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"6cdd3d31-99df-4de0-b9cd-69eaa738554c\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.866+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.948+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.948+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.949+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.949+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.950+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:26.971+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:26.975+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.020+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.032+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.032+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.033+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.054+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.054+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"d9198ac5-d533-4e92-927d-b5874122444b\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.196+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.200+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.244+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.256+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.257+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.257+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.278+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.278+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.889+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.941+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.964+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.964+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.966+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.967+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.967+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.071+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.075+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.121+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.135+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.145+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.145+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.146+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.146+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.147+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.147+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.774+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.899+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.923+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.923+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.925+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.147 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.829+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.878+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.904+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.904+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.905+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.905+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.906+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.906+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:59.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:59.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.100+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.129+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.163+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.164+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.169+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.169+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.170+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.170+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.914+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.919+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.966+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.980+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.980+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.981+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.991+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.991+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.992+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.992+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.993+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.993+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.828+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.880+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.894+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.895+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.896+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.906+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.906+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.907+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.907+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.908+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.909+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.554+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.619+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.619+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.620+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.631+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.631+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.632+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.632+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.633+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.633+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.144+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.148+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.193+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.207+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.207+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.208+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.218+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.218+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.220+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.220+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.633+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.637+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.700+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.701+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.702+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.712+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.712+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.713+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.714+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.715+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.715+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.123+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.175+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.189+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.189+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.202+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.203+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.206+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.084+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.088+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.148+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.149+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.150+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.160+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.160+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.162+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.163+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.937+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.942+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.002+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.002+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.003+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.013+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.013+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.014+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.014+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.015+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.015+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.062+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.108+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.122+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.122+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.123+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.133+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.133+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.135+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.135+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.158+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.163+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.212+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.224+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.225+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.225+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.235+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.235+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.236+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.236+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.237+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.237+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.642+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.647+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.695+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.719+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.720+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.720+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.721+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.722+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.722+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.355+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.422+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.423+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.423+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.435+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.435+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.436+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.437+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.438+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.438+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.439+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.439+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.686+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.981+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.043+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.044+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.044+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.094+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.095+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.095+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.335+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.380+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.385+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.385+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 4,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 4,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.396+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.404+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.406+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.411+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.974+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.140+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.162+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.414+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.414+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.415+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.459+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.465+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 2,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 2,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.493+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.507+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.511+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.511+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.878+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.881+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.962+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.046+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.048+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.072+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.072+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.074+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.074+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.950+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.031+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.082+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.085+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.152+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.152+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.459+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 1,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.446+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.471+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 1,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.482+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.497+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"json\": \"{\\\"url\\\":\\\"/v1/workflowsteps\\\",\\\"ip\\\":\\\"127.0.0.1\\\",\\\"http_method\\\":\\\"POST\\\",\\\"server\\\":\\\"localhost\\\",\\\"referrer\\\":\\\"https://dev.exivity.net/\\\"}\\\":true},\\\"relationships\\\":{\\\"workflow\\\":{\\\"data\\\":{\\\"type\\\":\\\"workflow\\\",\\\"id\\\":\\\"5\\\"}}}}}}\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.509+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 6,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.509+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.516+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.516+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.521+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.521+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.524+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.025+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.029+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.191+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.233+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.233+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.234+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.408+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.408+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.409+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.453+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.453+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.470+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 5,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 5,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.515+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.525+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.528+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.528+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.481+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.580+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.581+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.581+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.598+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.598+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.599+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.600+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.602+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.602+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.495+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.503+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.580+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.606+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.630+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.630+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.761+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Expired token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.763+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.763+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Expired token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Expired token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:44)[previous exception] [object] (App\\\\Exceptions\\\\ExpiredTokenException(code: 0): Expired token at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:177)\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Expired token provided, please login again.\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.392+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.398+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.456+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.465+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.466+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.467+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.468+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.186+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.193+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.279+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.304+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.305+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.305+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.333+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.334+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.337+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.338+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.339+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.339+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.660+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.712+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.737+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.737+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.738+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.738+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.740+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.223+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.311+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.357+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.358+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.358+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.392+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.393+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.393+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.395+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.398+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.398+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.395+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.445+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.460+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.472+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.473+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.474+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.474+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.475+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.475+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.574+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.574+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.575+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.710+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.714+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.784+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.786+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.786+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.868+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.937+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.937+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.938+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.939+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.942+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.942+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.943+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.943+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.147 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.253+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.487+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.490+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.536+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.563+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.672+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.677+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.677+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.679+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.680+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.681+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.681+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.682+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.921+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.061+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\Usergroup\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"usergroup\",\n                                    \"attributes\": {\n                                        \"name\": \"testers\",\n                                        \"permissions\": []\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"testers\",\n                                \"permissions\": []\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.073+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.075+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The permissions field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"rules\": {\n                                \"name\": \"required|string|max:255|unique:usergroup,name\",\n                                \"permissions\": \"required|array\",\n                                \"saml_provisioning\": \"nullable\",\n                                \"saml_provisioning.attribute\": \"nullable|string\",\n                                \"saml_provisioning.value\": [\n                                    \"required_with:saml_provisioning\",\n                                    \"string\",\n                                    \"min:1\",\n                                    {\n                                        \"Closure\": []\n                                    }\n                                ]\n                            },\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.077+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.077+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The permissions field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The permissions field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The permissions field is required.\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.687+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.691+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.735+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.747+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.747+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.748+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.758+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.758+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.829+00:00\",\n                        \"level\": 250,\n                        \"message\": \"Firebase\\\\JWT\\\\SignatureInvalidException: Signature verification failed\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.830+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.831+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.831+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Invalid token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:47)[previous exception] [object] (App\\\\Exceptions\\\\InvalidTokenException(code: 0): Signature verification failed at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:180)\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Invalid token provided, please login again.\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.870+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.874+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.922+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.946+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.946+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.947+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.947+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.948+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.948+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.411+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.425+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.531+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.569+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.569+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.570+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.570+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.571+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.230+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.238+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.323+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.600+00:00\",\n                        \"level\": 250,\n                        \"message\": \"Firebase\\\\JWT\\\\SignatureInvalidException: Signature verification failed\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.602+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.603+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Invalid token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:47)[previous exception] [object] (App\\\\Exceptions\\\\InvalidTokenException(code: 0): Signature verification failed at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:180)\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Invalid token provided, please login again.\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.611+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.668+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.689+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.689+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"6c7d0b64-db90-424f-a8d9-36c6d081ae74\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.048+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.052+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.116+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.116+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.117+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.117+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.187+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.187+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.194+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\LogController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.194+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\LogController\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.195+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Log\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.204+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The component field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The component field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/SimpleEndpoint.php:32)\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.206+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The component field is required.\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"1d768281-54ed-4d71-bf05-fa9a3814d790","name":"Extract","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=extract&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"extract","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:11:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-yE2UzvKFU7r2whBUlKHk86BlGOlxpXI6';style-src 'self' 'nonce-yE2UzvKFU7r2whBUlKHk86BlGOlxpXI6';font-src 'self' data:"},{"key":"Request-Id","value":"3eca1379-9eb1-42a4-b725-23aedf58daf0"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-extractor_scheduled_20220516-150653.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T15:06:53Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T15:06:53.711+00:00\",\n                        \"level\": 8,\n                        \"message\": \"----- Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.712+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Executing script: dummy-extractor.use\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Using custom CA cert file\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened input file 'system/config/use/dummy-extractor.use' (53 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Pre-processor completed (original: 53 bytes, new: 21 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing script 'system/config/use/dummy-extractor.use'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Finished running script 'system/config/use/dummy-extractor.use'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 8,\n                        \"message\": \"USE script 'dummy-extractor.use' completed successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Script execution finished successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"6fc4f2b4-8afa-467a-a4bf-e6a0dd068bf7","name":"Transform","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=transcript&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"transcript","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:12:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-NAxc3I9eC4XyZzKTov8F3w7XsIYJncpq';style-src 'self' 'nonce-NAxc3I9eC4XyZzKTov8F3w7XsIYJncpq';font-src 'self' data:"},{"key":"Request-Id","value":"03f5035b-55ac-4efe-bb82-5df4890a1303"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-transformer_scheduled_20220516-131448.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T13:14:48Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T13:14:48.915+00:00\",\n                        \"level\": 8,\n                        \"message\": \"---- Invocation ----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 2 | Logical CPUs: 2\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Installed RAM: 4.00Gb | RAM available to OS: 4.00Gb | RAM available to Transcript: 1.35Gb (34%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Logging level: DEBUG\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialisation starting ...\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Basedir: C:\\\\exivity_acme\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 69,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Scriptfile: dummy-transformer.trs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Data date: 20220514\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Set default options: quote='\\\"' separator=',' overwrite=ENABLED embed=DISABLED mode=STRICT services=READONLY\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised DSET list\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised local filter stack and associated filterators\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised runtime caching subsystem\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialisation completed successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Input file 'dummy-transformer.trs' processed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Initialised date range iterator: 20220514 - 20220517\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"There are 4 days in the specified range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'baseDir' value: 'C:\\\\exivity_acme\\\\home'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'homeDir' value: 'C:\\\\exivity_acme\\\\home'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'exportDir' value: 'C:\\\\exivity_acme\\\\home/exported'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDate' value: '20220514'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDateStart' value: '1652486400'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDateEnd' value: '1652572799'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataYear' value: '2022'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataMonth' value: '05'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataMonthDays' value: '31'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDay' value: '14'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised variables\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing script 'dummy-transformer.trs' for 20220514\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"==> Processing '#line' statement on line 1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processing file 'dummy-transformer.trs' from line 1 (depth 0)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"==> Processing 'import' statement on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Custom alias 'dummy-usage' specified on line 1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Unable to open input file 'system/extracted/2022/05/14_usage.csv' - No such file or directory\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Import of file 'system/extracted/2022/05/14_usage.csv' failed - aborted\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No RDF files for 20220514 were created or overwritten as no 'finish' statement was executed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Transcript task 'C:/exivity_acme/home/system/config/transcript/dummy-transformer.trs' for 20220514 failed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error running task for 20220514 and 'option continue' is set to DISABLED\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"ebb201aa-eb2a-4b8e-ad2b-3c9e12e7e216","name":"Prepare report","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=edify&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"edify","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:12:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-5ZKbXz8SrX8DqAYjpxLponklrEptwqdD';style-src 'self' 'nonce-5ZKbXz8SrX8DqAYjpxLponklrEptwqdD';font-src 'self' data:"},{"key":"Request-Id","value":"4dd81360-5fcd-47d7-ba58-753de4f5912a"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-report_scheduled_20220516-151158.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T15:11:58Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T15:11:58.789+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 51,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 2 | Logical CPUs: 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 4.00Gb | RAM available to OS: 4.00Gb | RAM available to Edify: 1.33Gb (34%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: C:\\\\exivity_acme\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.841+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_Workflow_step_eac6fbd1_770b_448c_a6ea_ba1cb54e0ef6' (182 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_Workflow_step_eac6fbd1_770b_448c_a6ea_ba1cb54e0ef6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Sat May 14 00:00:00 2022 (falls within 20220514)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Sun May 15 23:59:59 2022 (falls within 20220515)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: May  9 2022 10:05:57\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_syncAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for the default date range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.860+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.862+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.864+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 142 rate revisions for 'allauto.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 12,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20220514 - 20220515\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20220501 - 20220531 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 281,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 370\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"df128744-8915-42d9-9d65-9d91a836f9b4","name":"Chronos","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=chronos&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"chronos","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:13:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-UveTqP3XWczoSt9dDQ324II53osuG3m2';style-src 'self' 'nonce-UveTqP3XWczoSt9dDQ324II53osuG3m2';font-src 'self' data:"},{"key":"Request-Id","value":"2a8be6dd-0341-4cde-a6c9-f96fe24c5747"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"chronos.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:43Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-12T19:56:43.502+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start of new session\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:167\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:43.539+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Init completed\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:181\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:44.879+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Cannot connect to RabbitMQ server - retrying in 5 seconds\",\n                        \"metadata\": {\n                            \"source\": \"mqconn/connect.go:46\",\n                            \"error\": \"dial tcp [::1]:5672: connectex: No connection could be made because the target machine actively refused it.\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.961+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Queues declared\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:102\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Chronos started\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:116\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to listen for stop\",\n                        \"metadata\": {\n                            \"source\": \"chronos/stop.go:15\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:30\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to send heartbeats\",\n                        \"metadata\": {\n                            \"source\": \"chronos/heartbeats.go:24\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to listen for configuration changed events\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:13\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.968+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started to send heartbeats\",\n                        \"metadata\": {\n                            \"source\": \"chronos/heartbeats.go:41\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started listening for configuration changed events\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started to listen for stop\",\n                        \"metadata\": {\n                            \"source\": \"chronos/stop.go:69\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.100+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.710+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.186+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.662+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.143+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.595+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:11.314+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:11.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.699+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.773+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.798+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:25.532+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:25.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.841+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.933+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:06.221+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:06.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.105+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.144+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.224+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.297+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.593+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.660+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.769+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:43.200+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:43.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:01.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:01.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:06.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:06.527+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.672+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"90dee76c-88a6-41ec-9ffb-e1ca06825413","name":"Horizon","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=horizon&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"horizon","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:13:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-nXeOPar8mdYYK4qIpcRuSip5QMSv1xQz';style-src 'self' 'nonce-nXeOPar8mdYYK4qIpcRuSip5QMSv1xQz';font-src 'self' data:"},{"key":"Request-Id","value":"71dce77e-0d4d-4d79-94fe-1af152c7cca1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"horizon.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-13T15:57:23Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-13T15:57:23.623+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:31\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.715+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Cannot get revision\",\n                        \"metadata\": {\n                            \"source\": \"horizon/dbaccess.go:67\",\n                            \"error\": \"sql: no rows in result set\",\n                            \"stacktrace\": \"main.getBudgetRevision\\n\\tD:/a/horizon/horizon/dbaccess.go:67\\nmain.processBudget\\n\\tD:/a/horizon/horizon/horizon.go:198\\nmain.main\\n\\tD:/a/horizon/horizon/horizon.go:37\\nruntime.main\\n\\tC:/hostedtoolcache/windows/go/1.17.9/x64/src/runtime/proc.go:255\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.715+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Budget calculation failed\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:40\",\n                            \"error\": \"cannot find revision for 2:20160101\",\n                            \"stacktrace\": \"main.main\\n\\tD:/a/horizon/horizon/horizon.go:40\\nruntime.main\\n\\tC:/hostedtoolcache/windows/go/1.17.9/x64/src/runtime/proc.go:255\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.588+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:31\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Budget revision requires validation\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:216\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.791+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Stopped\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:33\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"f521f153-ec84-4564-b4d7-b3d1cf5840f9","name":"Merlin","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=merlin&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"merlin","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:14:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-8nCflndnG9RLUeHfzwFTIOqLXBHrUZQJ';style-src 'self' 'nonce-8nCflndnG9RLUeHfzwFTIOqLXBHrUZQJ';font-src 'self' data:"},{"key":"Request-Id","value":"af0ef147-fff7-4185-8490-38a4546bfac1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"merlin.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:45Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 4,\n                        \"message\": \"\\\"gni\\\"i{\\\"o{\\\"level\\\":\\\"warn\\\",\\\"ts\\\":\\\"2022-05-12T19:56:47.281Z\\\",\\\"caller\\\":\\\"mqconn/connect.go:46\\\",\\\"msg\\\":\\\"Cannot connect to RabbitMQ server - retrying in 5 seconds\\\",\\\"error\\\":\\\"dial tcp [::1]:5672: connectex: No connection could be made because the target machine actively refused it.\\\"}\",\n                        \"metadata\": {\n                            \"source\": \"\\\"caller\\\":\\\"mqconn/connect.go:46\\\"\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"CPU info\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:132\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Physical memory info\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:141\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Merlin started\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:166\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.333+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.335+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.341+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.908+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.909+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.911+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.231+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.998+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.998+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:17.336+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.258+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.283+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.436+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.856+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.858+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.858+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.211+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.440+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.447+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.449+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.481+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.529+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.582+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.825+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.155+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.186+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.235+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.235+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.296+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.488+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.335+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.347+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.347+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.383+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.383+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.409+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.505+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.567+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.567+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.593+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.701+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.553+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.641+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.676+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.945+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.946+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.946+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:53.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.126+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.942+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.981+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.054+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.058+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.097+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.098+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.125+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.165+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.118+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.118+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.724+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.805+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.094+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.251+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.329+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.407+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.447+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.293+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:57.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.994+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.141+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.176+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.177+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.177+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.328+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.359+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.360+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.360+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.243+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.281+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.317+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.328+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.354+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:08.060+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.804+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.814+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.282+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.317+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.769+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.795+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.807+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.807+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.808+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.869+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.879+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.879+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.906+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.306+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.330+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.403+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.662+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.035+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.114+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.384+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.422+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.440+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.441+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.441+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.721+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.636+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.712+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.712+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.713+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.764+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.765+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.765+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.801+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.811+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.837+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.888+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.888+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.931+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.005+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.222+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.079+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.130+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.155+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.187+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.250+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.882+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.936+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.310+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.472+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:36.113+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.680+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.721+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.920+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.920+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.670+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.670+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.085+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.790+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.178+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.337+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"cdf73a2d-0187-4f41-9ec4-789db8587387","name":"Griffon","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=griffon&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"griffon","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:14:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ibAcRZsarVuPwl3hgBNIalsrTahnM2Y3';style-src 'self' 'nonce-ibAcRZsarVuPwl3hgBNIalsrTahnM2Y3';font-src 'self' data:"},{"key":"Request-Id","value":"f43dcab5-462a-4e2e-b23a-458fe73d11f1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"griffon.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:48Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 4,\n                        \"message\": \"0\\\":\\\"{\\\"level\\\":\\\"info\\\",\\\"ts\\\":\\\"2022-05-12T19:56:48.367Z\\\",\\\"caller\\\":\\\"griffon/griffon.go:59\\\",\\\"msg\\\":\\\"Griffon started\\\"}\",\n                        \"metadata\": {\n                            \"source\": \"\\\"caller\\\":\\\"griffon/griffon.go:59\\\"\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.410+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.411+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_kill.go:26\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.412+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.413+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:27\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.420+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.421+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:29\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.423+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.428+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.429+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.429+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.430+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue '%s'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:34\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.433+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.438+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.442+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.450+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.714+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.794+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.904+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.259+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.836+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.125+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.996+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.043+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.161+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.163+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.281+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.282+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.420+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.437+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.492+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.552+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.666+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.196+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.197+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.232+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.269+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.459+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.460+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.307+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.346+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.381+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.417+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.418+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.474+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.475+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.564+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.565+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.602+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.638+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.639+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.673+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.551+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.552+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.944+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.031+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.033+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.146+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.873+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.939+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.000+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.002+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.096+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.134+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.116+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.574+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.187+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.193+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.641+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.301+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.349+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.299+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.301+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.445+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.319+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.173+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.357+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.358+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.214+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.253+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.254+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.289+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.325+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.326+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.969+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.786+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.787+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.701+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.740+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.776+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.777+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.811+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.812+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.180+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.181+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.218+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.219+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.253+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.290+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.766+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.767+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.804+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.806+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.843+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.263+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.265+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.337+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.374+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.663+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.663+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.144+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.053+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.091+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.437+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.438+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.576+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.580+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.711+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.761+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.762+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.808+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.809+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.672+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.882+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.883+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.006+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.010+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:53.912+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.030+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.090+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.214+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.770+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.774+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.829+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.831+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.832+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.896+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.311+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.473+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.916+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.969+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.971+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.053+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.055+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.610+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.761+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.673+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.676+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.735+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.796+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.816+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.179+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.243+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.338+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"1519c7da-15d3-4c2e-a658-0cadd6eccf4e"},{"name":"Retrieve a logfile","event":[{"listen":"test","script":{"id":"29bf8f21-5497-428c-a397-645446581335","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains logs\", function () {","    pm.expect(response.data).to.be.an('array');","    pm.expect(response.data[0].type).to.eql(\"logfile\");","    pm.expect(response.data[0].id).to.be.a(\"string\");","    pm.expect(response.data[0].attributes).to.be.an(\"object\");","});","","// Next request","","const components = [\"proximity\", \"pigeon\", \"use\", \"transcript\", \"edify\", \"chronos\", \"horizon\", \"merlin\", \"griffon\"];","const previousComponent = pm.environment.get(\"component\");","const nextComponent = components[components.indexOf(previousComponent) + 1];","","pm.environment.set(\"component\", nextComponent);","","if (nextComponent) {","    postman.setNextRequest(\"Retrieve logfiles\");","} else {","    postman.setNextRequest(\"Get a full data dump\");","}"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"cceeced6-0338-4436-bf07-c7390e900c1f","exec":["const component = pm.environment.get(\"component\");","","if (!component) {","    pm.environment.set(\"component\", \"proximity\");","}"],"type":"text/javascript"}}],"id":"581916e5-4a8d-4cfb-862b-87eeb3963465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/logs?component=&limit=&filter=&truncate=","urlObject":{"path":["v2","logs"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon</p>\n","type":"text/plain"},"key":"component","value":""},{"description":{"content":"<p>Limit the maximum number of logfiles to return. Defaults to <code>100</code>.</p>\n","type":"text/plain"},"key":"limit","value":""},{"description":{"content":"<p>Optionally filter the logfiles by filename. Use the asterisk (<code>*</code>) for wildcard matching.</p>\n","type":"text/plain"},"key":"filter","value":""},{"description":{"content":"<p>Whether to truncate the logfile lines. Use <code>0</code> to not disable truncating, or specify a number to receive the last <code>x</code> lines. Defaults to <code>1000</code>.</p>\n","type":"text/plain"},"key":"truncate","value":""}],"variable":[]}},"response":[{"id":"a40df7af-f863-445f-9458-3d8ea8da06e8","name":"Proximity","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=proximity&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"proximity","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:07:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-zRcF2sUJ7c8hzfvIFGK0DoWQQS49VBxq';style-src 'self' 'nonce-zRcF2sUJ7c8hzfvIFGK0DoWQQS49VBxq';font-src 'self' data:"},{"key":"Request-Id","value":"e858fbf7-2d45-4bce-86dc-ae4054ff6a43"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"proximity-2022-05-16.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T07:48:40Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T08:21:48.583+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.585+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.585+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Client generated IDs are not allowed.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException(code: 0): Client generated IDs are not allowed. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:127)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"message\": \"Client generated IDs are not allowed.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.540+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.545+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.592+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.604+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.606+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.628+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.628+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"5b88f331-ed06-4951-bc45-2c6475d35e3e\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.841+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.845+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.890+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.903+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.903+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.904+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.991+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.995+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Variable\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"variable\",\n                                    \"attributes\": {\n                                        \"name\": \"Appie\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Variable restEndpoint - validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"Appie\"\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.004+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.005+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The value field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"rules\": {\n                                \"name\": \"required|string\",\n                                \"value\": \"required|string\",\n                                \"encrypted\": \"boolean\",\n                                \"environment_id\": \"required|numeric|exists:environment,id\"\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.007+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.007+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The value field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The value field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.009+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.009+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.010+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The value field is required.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.256+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.303+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.316+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.316+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.317+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.328+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.328+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.329+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.329+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.402+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Variable\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"variable\",\n                                    \"attributes\": {\n                                        \"name\": \"Appie\",\n                                        \"value\": \"mosterd\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Variable restEndpoint - validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"Appie\",\n                                \"value\": \"mosterd\"\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.415+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.416+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The environment id field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"rules\": {\n                                \"name\": \"required|string\",\n                                \"value\": \"required|string\",\n                                \"encrypted\": \"boolean\",\n                                \"environment_id\": \"required|numeric|exists:environment,id\"\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.418+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.418+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The environment id field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The environment id field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.420+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.420+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.421+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The environment id field is required.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.020+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.065+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.094+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.094+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.096+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.098+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.934+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.938+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.985+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.012+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.012+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.013+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.015+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.015+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.450+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.500+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.529+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.529+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.530+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.532+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.534+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.702+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.706+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.755+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.768+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.769+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.769+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.846+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.846+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.847+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.855+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.859+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.863+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.867+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.867+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.868+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.869+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.869+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.871+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.871+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.872+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.873+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.873+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.679+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.683+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.757+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.826+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.826+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.829+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.838+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.838+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.840+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.840+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.732+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.736+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.782+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.817+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"eb53ec43-e73c-4d91-9090-475e7c2f422f\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.818+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.819+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.819+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:29.974+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:29.978+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.024+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.057+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.058+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"6cdd3d31-99df-4de0-b9cd-69eaa738554c\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.866+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.948+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.948+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.949+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.949+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.950+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:26.971+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:26.975+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.020+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.032+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.032+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.033+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.054+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.054+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"d9198ac5-d533-4e92-927d-b5874122444b\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.196+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.200+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.244+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.256+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.257+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.257+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.278+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.278+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.889+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.941+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.964+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.964+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.966+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.967+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.967+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.071+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.075+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.121+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.135+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.145+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.145+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.146+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.146+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.147+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.147+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.774+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.899+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.923+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.923+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.925+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.147 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.829+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.878+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.904+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.904+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.905+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.905+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.906+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.906+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:59.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:59.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.100+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.129+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.163+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.164+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.169+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.169+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.170+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.170+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.914+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.919+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.966+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.980+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.980+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.981+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.991+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.991+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.992+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.992+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.993+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.993+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.828+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.880+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.894+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.895+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.896+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.906+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.906+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.907+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.907+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.908+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.909+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.554+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.619+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.619+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.620+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.631+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.631+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.632+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.632+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.633+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.633+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.144+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.148+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.193+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.207+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.207+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.208+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.218+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.218+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.220+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.220+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.633+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.637+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.700+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.701+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.702+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.712+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.712+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.713+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.714+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.715+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.715+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.123+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.175+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.189+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.189+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.202+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.203+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.206+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.084+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.088+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.148+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.149+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.150+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.160+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.160+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.162+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.163+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.937+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.942+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.002+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.002+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.003+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.013+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.013+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.014+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.014+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.015+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.015+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.062+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.108+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.122+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.122+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.123+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.133+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.133+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.135+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.135+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.158+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.163+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.212+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.224+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.225+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.225+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.235+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.235+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.236+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.236+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.237+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.237+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.642+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.647+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.695+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.719+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.720+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.720+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.721+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.722+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.722+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.355+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.422+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.423+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.423+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.435+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.435+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.436+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.437+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.438+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.438+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.439+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.439+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.686+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.981+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.043+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.044+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.044+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.094+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.095+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.095+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.335+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.380+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.385+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.385+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 4,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 4,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.396+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.404+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.406+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.411+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.974+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.140+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.162+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.414+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.414+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.415+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.459+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.465+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 2,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 2,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.493+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.507+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.511+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.511+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.878+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.881+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.962+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.046+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.048+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.072+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.072+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.074+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.074+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.950+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.031+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.082+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.085+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.152+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.152+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.459+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 1,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.446+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.471+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 1,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.482+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.497+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"json\": \"{\\\"url\\\":\\\"/v1/workflowsteps\\\",\\\"ip\\\":\\\"127.0.0.1\\\",\\\"http_method\\\":\\\"POST\\\",\\\"server\\\":\\\"localhost\\\",\\\"referrer\\\":\\\"https://dev.exivity.net/\\\"}\\\":true},\\\"relationships\\\":{\\\"workflow\\\":{\\\"data\\\":{\\\"type\\\":\\\"workflow\\\",\\\"id\\\":\\\"5\\\"}}}}}}\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.509+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 6,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.509+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.516+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.516+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.521+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.521+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.524+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.025+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.029+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.191+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.233+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.233+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.234+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.408+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.408+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.409+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.453+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.453+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.470+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 5,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 5,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.515+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.525+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.528+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.528+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.481+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.580+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.581+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.581+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.598+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.598+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.599+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.600+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.602+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.602+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.495+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.503+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.580+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.606+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.630+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.630+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.761+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Expired token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.763+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.763+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Expired token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Expired token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:44)[previous exception] [object] (App\\\\Exceptions\\\\ExpiredTokenException(code: 0): Expired token at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:177)\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Expired token provided, please login again.\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.392+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.398+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.456+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.465+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.466+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.467+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.468+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.186+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.193+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.279+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.304+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.305+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.305+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.333+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.334+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.337+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.338+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.339+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.339+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.660+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.712+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.737+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.737+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.738+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.738+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.740+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.223+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.311+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.357+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.358+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.358+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.392+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.393+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.393+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.395+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.398+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.398+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.395+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.445+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.460+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.472+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.473+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.474+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.474+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.475+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.475+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.574+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.574+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.575+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.710+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.714+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.784+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.786+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.786+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.868+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.937+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.937+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.938+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.939+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.942+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.942+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.943+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.943+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.147 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.253+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.487+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.490+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.536+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.563+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.672+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.677+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.677+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.679+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.680+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.681+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.681+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.682+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.921+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.061+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\Usergroup\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"usergroup\",\n                                    \"attributes\": {\n                                        \"name\": \"testers\",\n                                        \"permissions\": []\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"testers\",\n                                \"permissions\": []\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.073+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.075+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The permissions field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"rules\": {\n                                \"name\": \"required|string|max:255|unique:usergroup,name\",\n                                \"permissions\": \"required|array\",\n                                \"saml_provisioning\": \"nullable\",\n                                \"saml_provisioning.attribute\": \"nullable|string\",\n                                \"saml_provisioning.value\": [\n                                    \"required_with:saml_provisioning\",\n                                    \"string\",\n                                    \"min:1\",\n                                    {\n                                        \"Closure\": []\n                                    }\n                                ]\n                            },\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.077+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.077+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The permissions field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The permissions field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The permissions field is required.\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.687+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.691+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.735+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.747+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.747+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.748+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.758+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.758+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.829+00:00\",\n                        \"level\": 250,\n                        \"message\": \"Firebase\\\\JWT\\\\SignatureInvalidException: Signature verification failed\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.830+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.831+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.831+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Invalid token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:47)[previous exception] [object] (App\\\\Exceptions\\\\InvalidTokenException(code: 0): Signature verification failed at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:180)\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Invalid token provided, please login again.\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.870+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.874+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.922+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.946+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.946+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.947+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.947+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.948+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.948+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.411+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.425+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.531+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.569+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.569+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.570+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.570+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.571+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.230+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.238+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.323+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.600+00:00\",\n                        \"level\": 250,\n                        \"message\": \"Firebase\\\\JWT\\\\SignatureInvalidException: Signature verification failed\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.602+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.603+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Invalid token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:47)[previous exception] [object] (App\\\\Exceptions\\\\InvalidTokenException(code: 0): Signature verification failed at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:180)\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Invalid token provided, please login again.\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.611+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.668+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.689+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.689+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"6c7d0b64-db90-424f-a8d9-36c6d081ae74\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.048+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.052+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.116+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.116+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.117+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.117+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.187+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.187+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.194+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\LogController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.194+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\LogController\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.195+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Log\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.204+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The component field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The component field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/SimpleEndpoint.php:32)\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.206+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The component field is required.\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"b8b811fa-1115-4db4-baf7-a3417df01b03","name":"Extract","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=extract&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"extract","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:11:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-yE2UzvKFU7r2whBUlKHk86BlGOlxpXI6';style-src 'self' 'nonce-yE2UzvKFU7r2whBUlKHk86BlGOlxpXI6';font-src 'self' data:"},{"key":"Request-Id","value":"3eca1379-9eb1-42a4-b725-23aedf58daf0"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-extractor_scheduled_20220516-150653.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T15:06:53Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T15:06:53.711+00:00\",\n                        \"level\": 8,\n                        \"message\": \"----- Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.712+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Executing script: dummy-extractor.use\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Using custom CA cert file\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened input file 'system/config/use/dummy-extractor.use' (53 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Pre-processor completed (original: 53 bytes, new: 21 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing script 'system/config/use/dummy-extractor.use'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Finished running script 'system/config/use/dummy-extractor.use'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 8,\n                        \"message\": \"USE script 'dummy-extractor.use' completed successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Script execution finished successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"ced77a7f-51d2-4044-90b7-8e204ec6642c","name":"Transform","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=transcript&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"transcript","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:12:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-NAxc3I9eC4XyZzKTov8F3w7XsIYJncpq';style-src 'self' 'nonce-NAxc3I9eC4XyZzKTov8F3w7XsIYJncpq';font-src 'self' data:"},{"key":"Request-Id","value":"03f5035b-55ac-4efe-bb82-5df4890a1303"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-transformer_scheduled_20220516-131448.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T13:14:48Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T13:14:48.915+00:00\",\n                        \"level\": 8,\n                        \"message\": \"---- Invocation ----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 2 | Logical CPUs: 2\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Installed RAM: 4.00Gb | RAM available to OS: 4.00Gb | RAM available to Transcript: 1.35Gb (34%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Logging level: DEBUG\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialisation starting ...\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Basedir: C:\\\\exivity_acme\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 69,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Scriptfile: dummy-transformer.trs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Data date: 20220514\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Set default options: quote='\\\"' separator=',' overwrite=ENABLED embed=DISABLED mode=STRICT services=READONLY\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised DSET list\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised local filter stack and associated filterators\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised runtime caching subsystem\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialisation completed successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Input file 'dummy-transformer.trs' processed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Initialised date range iterator: 20220514 - 20220517\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"There are 4 days in the specified range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'baseDir' value: 'C:\\\\exivity_acme\\\\home'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'homeDir' value: 'C:\\\\exivity_acme\\\\home'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'exportDir' value: 'C:\\\\exivity_acme\\\\home/exported'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDate' value: '20220514'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDateStart' value: '1652486400'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDateEnd' value: '1652572799'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataYear' value: '2022'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataMonth' value: '05'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataMonthDays' value: '31'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDay' value: '14'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised variables\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing script 'dummy-transformer.trs' for 20220514\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"==> Processing '#line' statement on line 1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processing file 'dummy-transformer.trs' from line 1 (depth 0)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"==> Processing 'import' statement on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Custom alias 'dummy-usage' specified on line 1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Unable to open input file 'system/extracted/2022/05/14_usage.csv' - No such file or directory\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Import of file 'system/extracted/2022/05/14_usage.csv' failed - aborted\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No RDF files for 20220514 were created or overwritten as no 'finish' statement was executed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Transcript task 'C:/exivity_acme/home/system/config/transcript/dummy-transformer.trs' for 20220514 failed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error running task for 20220514 and 'option continue' is set to DISABLED\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"a9bbeac8-8bb8-4c09-ab54-4d7c4c4a1673","name":"Prepare report","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=edify&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"edify","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:12:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-5ZKbXz8SrX8DqAYjpxLponklrEptwqdD';style-src 'self' 'nonce-5ZKbXz8SrX8DqAYjpxLponklrEptwqdD';font-src 'self' data:"},{"key":"Request-Id","value":"4dd81360-5fcd-47d7-ba58-753de4f5912a"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-report_scheduled_20220516-151158.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T15:11:58Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T15:11:58.789+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 51,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 2 | Logical CPUs: 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 4.00Gb | RAM available to OS: 4.00Gb | RAM available to Edify: 1.33Gb (34%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: C:\\\\exivity_acme\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.841+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_Workflow_step_eac6fbd1_770b_448c_a6ea_ba1cb54e0ef6' (182 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_Workflow_step_eac6fbd1_770b_448c_a6ea_ba1cb54e0ef6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Sat May 14 00:00:00 2022 (falls within 20220514)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Sun May 15 23:59:59 2022 (falls within 20220515)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: May  9 2022 10:05:57\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_syncAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for the default date range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.860+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.862+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.864+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 142 rate revisions for 'allauto.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 12,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20220514 - 20220515\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20220501 - 20220531 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 281,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 370\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"6d595fc9-0d0d-4fac-b6ec-74a618332fc3","name":"Chronos","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=chronos&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"chronos","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:13:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-UveTqP3XWczoSt9dDQ324II53osuG3m2';style-src 'self' 'nonce-UveTqP3XWczoSt9dDQ324II53osuG3m2';font-src 'self' data:"},{"key":"Request-Id","value":"2a8be6dd-0341-4cde-a6c9-f96fe24c5747"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"chronos.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:43Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-12T19:56:43.502+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start of new session\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:167\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:43.539+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Init completed\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:181\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:44.879+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Cannot connect to RabbitMQ server - retrying in 5 seconds\",\n                        \"metadata\": {\n                            \"source\": \"mqconn/connect.go:46\",\n                            \"error\": \"dial tcp [::1]:5672: connectex: No connection could be made because the target machine actively refused it.\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.961+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Queues declared\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:102\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Chronos started\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:116\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to listen for stop\",\n                        \"metadata\": {\n                            \"source\": \"chronos/stop.go:15\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:30\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to send heartbeats\",\n                        \"metadata\": {\n                            \"source\": \"chronos/heartbeats.go:24\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to listen for configuration changed events\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:13\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.968+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started to send heartbeats\",\n                        \"metadata\": {\n                            \"source\": \"chronos/heartbeats.go:41\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started listening for configuration changed events\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started to listen for stop\",\n                        \"metadata\": {\n                            \"source\": \"chronos/stop.go:69\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.100+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.710+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.186+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.662+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.143+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.595+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:11.314+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:11.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.699+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.773+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.798+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:25.532+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:25.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.841+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.933+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:06.221+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:06.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.105+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.144+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.224+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.297+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.593+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.660+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.769+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:43.200+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:43.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:01.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:01.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:06.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:06.527+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.672+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"4f36d2c0-fe8b-4e44-a783-4ab409eeb234","name":"Horizon","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=horizon&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"horizon","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:13:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-nXeOPar8mdYYK4qIpcRuSip5QMSv1xQz';style-src 'self' 'nonce-nXeOPar8mdYYK4qIpcRuSip5QMSv1xQz';font-src 'self' data:"},{"key":"Request-Id","value":"71dce77e-0d4d-4d79-94fe-1af152c7cca1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"horizon.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-13T15:57:23Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-13T15:57:23.623+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:31\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.715+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Cannot get revision\",\n                        \"metadata\": {\n                            \"source\": \"horizon/dbaccess.go:67\",\n                            \"error\": \"sql: no rows in result set\",\n                            \"stacktrace\": \"main.getBudgetRevision\\n\\tD:/a/horizon/horizon/dbaccess.go:67\\nmain.processBudget\\n\\tD:/a/horizon/horizon/horizon.go:198\\nmain.main\\n\\tD:/a/horizon/horizon/horizon.go:37\\nruntime.main\\n\\tC:/hostedtoolcache/windows/go/1.17.9/x64/src/runtime/proc.go:255\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.715+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Budget calculation failed\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:40\",\n                            \"error\": \"cannot find revision for 2:20160101\",\n                            \"stacktrace\": \"main.main\\n\\tD:/a/horizon/horizon/horizon.go:40\\nruntime.main\\n\\tC:/hostedtoolcache/windows/go/1.17.9/x64/src/runtime/proc.go:255\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.588+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:31\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Budget revision requires validation\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:216\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.791+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Stopped\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:33\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"cb647093-3d9f-43dc-aa9f-536a25b02279","name":"Merlin","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=merlin&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"merlin","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:14:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-8nCflndnG9RLUeHfzwFTIOqLXBHrUZQJ';style-src 'self' 'nonce-8nCflndnG9RLUeHfzwFTIOqLXBHrUZQJ';font-src 'self' data:"},{"key":"Request-Id","value":"af0ef147-fff7-4185-8490-38a4546bfac1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"merlin.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:45Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 4,\n                        \"message\": \"\\\"gni\\\"i{\\\"o{\\\"level\\\":\\\"warn\\\",\\\"ts\\\":\\\"2022-05-12T19:56:47.281Z\\\",\\\"caller\\\":\\\"mqconn/connect.go:46\\\",\\\"msg\\\":\\\"Cannot connect to RabbitMQ server - retrying in 5 seconds\\\",\\\"error\\\":\\\"dial tcp [::1]:5672: connectex: No connection could be made because the target machine actively refused it.\\\"}\",\n                        \"metadata\": {\n                            \"source\": \"\\\"caller\\\":\\\"mqconn/connect.go:46\\\"\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"CPU info\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:132\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Physical memory info\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:141\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Merlin started\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:166\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.333+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.335+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.341+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.908+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.909+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.911+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.231+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.998+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.998+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:17.336+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.258+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.283+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.436+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.856+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.858+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.858+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.211+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.440+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.447+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.449+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.481+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.529+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.582+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.825+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.155+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.186+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.235+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.235+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.296+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.488+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.335+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.347+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.347+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.383+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.383+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.409+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.505+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.567+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.567+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.593+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.701+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.553+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.641+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.676+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.945+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.946+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.946+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:53.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.126+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.942+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.981+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.054+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.058+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.097+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.098+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.125+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.165+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.118+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.118+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.724+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.805+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.094+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.251+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.329+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.407+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.447+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.293+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:57.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.994+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.141+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.176+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.177+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.177+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.328+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.359+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.360+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.360+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.243+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.281+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.317+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.328+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.354+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:08.060+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.804+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.814+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.282+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.317+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.769+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.795+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.807+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.807+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.808+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.869+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.879+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.879+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.906+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.306+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.330+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.403+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.662+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.035+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.114+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.384+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.422+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.440+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.441+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.441+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.721+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.636+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.712+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.712+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.713+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.764+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.765+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.765+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.801+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.811+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.837+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.888+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.888+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.931+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.005+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.222+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.079+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.130+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.155+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.187+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.250+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.882+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.936+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.310+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.472+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:36.113+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.680+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.721+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.920+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.920+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.670+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.670+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.085+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.790+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.178+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.337+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"42de763d-eae9-4d3d-9c30-09ae2d567e38","name":"Griffon","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=griffon&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"griffon","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:14:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ibAcRZsarVuPwl3hgBNIalsrTahnM2Y3';style-src 'self' 'nonce-ibAcRZsarVuPwl3hgBNIalsrTahnM2Y3';font-src 'self' data:"},{"key":"Request-Id","value":"f43dcab5-462a-4e2e-b23a-458fe73d11f1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"griffon.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:48Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 4,\n                        \"message\": \"0\\\":\\\"{\\\"level\\\":\\\"info\\\",\\\"ts\\\":\\\"2022-05-12T19:56:48.367Z\\\",\\\"caller\\\":\\\"griffon/griffon.go:59\\\",\\\"msg\\\":\\\"Griffon started\\\"}\",\n                        \"metadata\": {\n                            \"source\": \"\\\"caller\\\":\\\"griffon/griffon.go:59\\\"\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.410+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.411+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_kill.go:26\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.412+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.413+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:27\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.420+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.421+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:29\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.423+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.428+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.429+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.429+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.430+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue '%s'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:34\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.433+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.438+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.442+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.450+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.714+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.794+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.904+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.259+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.836+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.125+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.996+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.043+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.161+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.163+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.281+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.282+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.420+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.437+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.492+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.552+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.666+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.196+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.197+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.232+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.269+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.459+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.460+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.307+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.346+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.381+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.417+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.418+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.474+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.475+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.564+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.565+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.602+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.638+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.639+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.673+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.551+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.552+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.944+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.031+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.033+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.146+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.873+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.939+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.000+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.002+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.096+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.134+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.116+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.574+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.187+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.193+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.641+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.301+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.349+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.299+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.301+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.445+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.319+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.173+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.357+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.358+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.214+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.253+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.254+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.289+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.325+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.326+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.969+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.786+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.787+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.701+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.740+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.776+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.777+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.811+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.812+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.180+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.181+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.218+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.219+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.253+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.290+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.766+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.767+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.804+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.806+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.843+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.263+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.265+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.337+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.374+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.663+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.663+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.144+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.053+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.091+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.437+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.438+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.576+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.580+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.711+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.761+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.762+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.808+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.809+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.672+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.882+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.883+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.006+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.010+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:53.912+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.030+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.090+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.214+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.770+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.774+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.829+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.831+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.832+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.896+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.311+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.473+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.916+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.969+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.971+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.053+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.055+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.610+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.761+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.673+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.676+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.735+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.796+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.816+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.179+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.243+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.338+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"581916e5-4a8d-4cfb-862b-87eeb3963465"},{"name":"Prepare report","event":[{"listen":"test","script":{"id":"29bf8f21-5497-428c-a397-645446581335","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains logs\", function () {","    pm.expect(response.data).to.be.an('array');","    pm.expect(response.data[0].type).to.eql(\"logfile\");","    pm.expect(response.data[0].id).to.be.a(\"string\");","    pm.expect(response.data[0].attributes).to.be.an(\"object\");","});","","// Next request","","const components = [\"proximity\", \"pigeon\", \"use\", \"transcript\", \"edify\", \"chronos\", \"horizon\", \"merlin\", \"griffon\"];","const previousComponent = pm.environment.get(\"component\");","const nextComponent = components[components.indexOf(previousComponent) + 1];","","pm.environment.set(\"component\", nextComponent);","","if (nextComponent) {","    postman.setNextRequest(\"Retrieve logfiles\");","} else {","    postman.setNextRequest(\"Get a full data dump\");","}"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"cceeced6-0338-4436-bf07-c7390e900c1f","exec":["const component = pm.environment.get(\"component\");","","if (!component) {","    pm.environment.set(\"component\", \"proximity\");","}"],"type":"text/javascript"}}],"id":"c3f6732d-6ff0-4311-a481-68459cb9328f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/logs?component=prepare_report&limit=&filter=&truncate=","urlObject":{"path":["v2","logs"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon</p>\n","type":"text/plain"},"key":"component","value":"prepare_report"},{"description":{"content":"<p>Limit the maximum number of logfiles to return. Defaults to <code>100</code>.</p>\n","type":"text/plain"},"key":"limit","value":""},{"description":{"content":"<p>Optionally filter the logfiles by filename. Use the asterisk (<code>*</code>) for wildcard matching.</p>\n","type":"text/plain"},"key":"filter","value":""},{"description":{"content":"<p>Whether to truncate the logfile lines. Use <code>0</code> to not disable truncating, or specify a number to receive the last <code>x</code> lines. Defaults to <code>1000</code>.</p>\n","type":"text/plain"},"key":"truncate","value":""}],"variable":[]}},"response":[{"id":"ccbbba23-7ea9-4666-b8c3-63d043e0d0bf","name":"Proximity","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=proximity&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"proximity","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:07:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-zRcF2sUJ7c8hzfvIFGK0DoWQQS49VBxq';style-src 'self' 'nonce-zRcF2sUJ7c8hzfvIFGK0DoWQQS49VBxq';font-src 'self' data:"},{"key":"Request-Id","value":"e858fbf7-2d45-4bce-86dc-ae4054ff6a43"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"proximity-2022-05-16.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T07:48:40Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T08:21:48.583+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.585+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.585+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Client generated IDs are not allowed.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException(code: 0): Client generated IDs are not allowed. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:127)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:21:48.587+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d10038e2-10a7-4997-986d-24940bfcb279\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ClientGeneratedIdException\",\n                            \"message\": \"Client generated IDs are not allowed.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.540+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.545+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.592+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.604+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.606+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.628+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.628+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"5b88f331-ed06-4951-bc45-2c6475d35e3e\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:23:10.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5b88f331-ed06-4951-bc45-2c6475d35e3e\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v2/variables/29f55cab-e3f2-4aeb-959a-8d7f727186ca\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"PATCH\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.841+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.845+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.890+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.903+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.903+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.904+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.979+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.989+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.991+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.995+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Variable\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"variable\",\n                                    \"attributes\": {\n                                        \"name\": \"Appie\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Variable restEndpoint - validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:52.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"Appie\"\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.004+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.005+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The value field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"rules\": {\n                                \"name\": \"required|string\",\n                                \"value\": \"required|string\",\n                                \"encrypted\": \"boolean\",\n                                \"environment_id\": \"required|numeric|exists:environment,id\"\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.007+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.007+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The value field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The value field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.009+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.009+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:45:53.010+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cfce330d-6933-42f3-a36c-922894686978\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The value field is required.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.256+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.303+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.316+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.316+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.317+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.328+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.328+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.329+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.329+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v2/variables\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.400+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.402+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\VariableController\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Variable\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"variable\",\n                                    \"attributes\": {\n                                        \"name\": \"Appie\",\n                                        \"value\": \"mosterd\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Variable restEndpoint - validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\Variable::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"Appie\",\n                                \"value\": \"mosterd\"\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.415+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.416+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The environment id field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"rules\": {\n                                \"name\": \"required|string\",\n                                \"value\": \"required|string\",\n                                \"encrypted\": \"boolean\",\n                                \"environment_id\": \"required|numeric|exists:environment,id\"\n                            },\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.418+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.418+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The environment id field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The environment id field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.420+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.420+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T08:46:47.421+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a5c50fdd-5c68-47fc-82ff-473b41083e4a\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The environment id field is required.\",\n                            \"url\": \"/v2/variables\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:3000/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.020+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.065+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.094+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.094+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.096+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:29.098+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13470179-0306-482f-8080-72272e399bda\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.934+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.938+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.985+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:55.998+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.012+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.012+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.013+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.015+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.015+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:45:56.016+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c72ae89e-f04e-4bae-b394-2f1c7928c716\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/accounts\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.450+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.500+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.529+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.529+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.530+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.532+00:00\",\n                        \"level\": 400,\n                        \"message\": \"No token provided, please login.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): No token provided, please login. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:36)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:46:07.534+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fa59bb2a-5d8d-4c7e-8c99-0649cdac55fb\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"No token provided, please login.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.702+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.706+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.755+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.768+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.769+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.769+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.846+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.846+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.847+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.855+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.856+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.859+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.863+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.867+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.867+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.868+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.869+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.869+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.871+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.871+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.872+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.873+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:03.873+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"cd71dc6f-9ba0-4dc5-9d0f-9bda86651359\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.679+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.683+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.742+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.756+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.757+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.826+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.826+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.827+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.829+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.837+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.838+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.838+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.840+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.840+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T09:47:14.842+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9b2b29d3-a9a7-4b1d-a219-70cd9576450c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.732+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.736+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.782+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.817+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.817+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"eb53ec43-e73c-4d91-9090-475e7c2f422f\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.818+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.819+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:28.819+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"eb53ec43-e73c-4d91-9090-475e7c2f422f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:29.974+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:29.978+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.024+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.036+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.057+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.058+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"6cdd3d31-99df-4de0-b9cd-69eaa738554c\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:01:30.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6cdd3d31-99df-4de0-b9cd-69eaa738554c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/dqgqoeCXckuwPtxov\",\n                            \"ip\": \"106.75.70.97\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.862+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.866+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.948+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.948+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.949+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.949+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:25.950+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a12c31c9-cc4b-43b3-8c95-283b5ef4930c\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:26.971+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:26.975+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.020+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.032+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.032+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.033+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.054+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.054+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"d9198ac5-d533-4e92-927d-b5874122444b\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:27.055+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d9198ac5-d533-4e92-927d-b5874122444b\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/favicon.png\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.196+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.200+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.244+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.256+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.257+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.257+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.278+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.278+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:21:47.280+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2f0b2e89-8e49-4a27-a11f-fe4809a2634f\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v1/\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.889+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.941+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.954+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.964+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.964+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.966+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.967+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:05.967+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"d4d5e959-b72a-48dc-b095-a6c1104c3f36\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.071+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.075+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.121+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.135+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.145+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.145+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.146+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.146+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.147+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:33.147+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7d5426f8-2457-4b4c-910e-da9ca140e941\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.774+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.899+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.923+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.923+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.924+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.925+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:37.926+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.147 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.096+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T10:23:38.097+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9728fbf6-703c-4fda-bc0b-ab13746b8e98\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.829+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.878+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.893+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.904+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.904+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.905+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.905+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.906+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:56.906+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ddc0c3d2-5f2b-4bde-b335-023cbd7aee9e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:59.994+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:57:59.999+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.100+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.129+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.163+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.164+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.169+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.169+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.170+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.170+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T11:58:00.404+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"f2dd1d9d-c486-4424-9440-2cfdea61abe1\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.914+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.919+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.966+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.980+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.980+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.981+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.991+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.991+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.992+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.992+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.993+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:05:45.993+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e0f49ecc-e69e-424f-95b5-88e2997bac2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.828+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.880+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.894+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.895+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.896+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.906+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.906+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.907+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.907+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.908+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:18.909+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa1256d-a71c-4009-ab10-c4bc28e31931\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.554+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.619+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.619+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.620+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.631+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.631+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.632+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.632+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.633+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:09:31.633+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"0db79bc3-368b-4a36-89a3-dd7cf8eef7ce\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.144+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.148+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.193+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.207+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.207+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.208+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.218+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.218+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.220+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:01.220+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bdc2edc8-c928-4b40-a214-eca85ebe46c4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.633+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.637+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.700+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.701+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.702+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.712+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.712+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.713+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.714+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.715+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:11:23.715+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"a3885d96-b402-4356-a334-022e17e8e7f7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.123+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.128+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.175+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.189+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.189+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.202+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.203+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:13:02.206+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9d30dd77-a127-47d8-b910-54a899a9512e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.084+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.088+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.148+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.149+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.150+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.160+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.160+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.162+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:12.163+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"48863772-d7b0-485d-8cd2-a593583c9b2d\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.937+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.942+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:34.988+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.002+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.002+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.003+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.013+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.013+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.014+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.014+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.015+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:14:35.015+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"488c621e-ed48-4068-bcbc-1e7fb6440b8e\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15136,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.062+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.108+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.122+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.122+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.123+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.133+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.133+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.134+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.135+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:15:06.135+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"093bfb4a-bf52-4c08-8dc5-08524426da70\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"http://localhost:9090/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.158+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.163+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.212+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.224+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.225+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.225+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.235+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.235+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.236+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.236+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.237+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T12:57:11.237+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"2d992248-981e-4fbb-b1fb-89386e68cf0f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.642+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.647+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.695+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.709+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.719+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.720+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.720+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.721+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.722+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:15.722+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c5ecd84a-dc5c-44ab-84cf-fedbef26c224\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.355+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15208,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.405+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.422+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.423+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.423+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.435+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.435+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.436+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.437+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.438+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.438+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.439+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.439+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.685+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:18.686+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"810c9c3a-26f2-43c3-8340-20d5151e7ddb\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.981+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.043+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.044+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.044+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.094+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.095+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.095+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.319+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.335+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.380+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.381+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.385+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.385+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 4,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.386+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 4,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.391+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.396+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.404+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.406+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.406+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.411+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"e6dd3ec0-e01a-4db2-9611-8ca60d92eb30\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 15340,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.974+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.140+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.161+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.162+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.414+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.414+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.415+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.459+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.465+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 2,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 2,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.493+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.507+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.511+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.511+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.513+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"4e512bdf-a30d-46af-884f-803976d0ad8d\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.878+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.881+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.962+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.046+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.048+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.072+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.072+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.074+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.074+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:09.950+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.031+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.080+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.082+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.451+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.085+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.454+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.152+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.152+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.459+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.165+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.410+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.412+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 1,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.444+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.446+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.477+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.471+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 1,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.482+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.485+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.497+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"json\": \"{\\\"url\\\":\\\"/v1/workflowsteps\\\",\\\"ip\\\":\\\"127.0.0.1\\\",\\\"http_method\\\":\\\"POST\\\",\\\"server\\\":\\\"localhost\\\",\\\"referrer\\\":\\\"https://dev.exivity.net/\\\"}\\\":true},\\\"relationships\\\":{\\\"workflow\\\":{\\\"data\\\":{\\\"type\\\":\\\"workflow\\\",\\\"id\\\":\\\"5\\\"}}}}}}\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.509+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.483+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.514+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 6,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.496+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.509+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.516+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.516+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.521+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.521+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"13b64423-48ac-442a-9516-365d9cf1c87c\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.522+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.524+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"552c3294-ff92-47dc-b83c-da1da3f43945\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.025+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.029+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.191+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.233+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.233+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.234+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.251+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.408+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.408+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.409+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.453+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.453+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.470+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\WorkflowStepController\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\WorkflowStep\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"workflowstep\",\n                                    \"attributes\": {\n                                        \"sort\": 5,\n                                        \"type\": \"use\",\n                                        \"options\": [],\n                                        \"timeout\": 3600,\n                                        \"wait\": true\n                                    },\n                                    \"relationships\": {\n                                        \"workflow\": {\n                                            \"data\": {\n                                                \"type\": \"workflow\",\n                                                \"id\": \"5\"\n                                            }\n                                        }\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.494+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\WorkflowStep::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"sort\": 5,\n                                \"type\": \"use\",\n                                \"options\": [],\n                                \"timeout\": 3600,\n                                \"wait\": true\n                            },\n                            \"relationships\": {\n                                \"workflow\": {\n                                    \"data\": {\n                                        \"type\": \"workflow\",\n                                        \"id\": \"5\"\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.502+00:00\",\n                        \"level\": 100,\n                        \"message\": \"- append relationship workflow\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.515+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.525+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"rules\": {\n                                \"workflow_id\": \"required|numeric|exists:workflow,id\",\n                                \"sort\": \"numeric\",\n                                \"type\": \"required|string|in:\\\"use\\\",\\\"transcript\\\",\\\"edify\\\",\\\"execute\\\",\\\"proximity\\\",\\\"publish_report\\\",\\\"evaluate_budget\\\"\",\n                                \"options\": \"required|array\",\n                                \"timeout\": \"numeric|min:1|max:86400\",\n                                \"wait\": \"bool\"\n                            },\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.528+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.528+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The options field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The options field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"026079a0-4d65-4a63-b73c-c87376be0c62\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The options field is required.\",\n                            \"url\": \"/v1/workflowsteps\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.481+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.580+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.581+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.581+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.598+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.598+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.599+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.600+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.602+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.602+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.729+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"bfbaedd0-cb7a-4f5e-8371-3723d612ed73\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.495+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.503+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.580+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.606+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.629+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.630+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.630+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.761+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Expired token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.763+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.763+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Expired token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Expired token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:44)[previous exception] [object] (App\\\\Exceptions\\\\ExpiredTokenException(code: 0): Expired token at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:177)\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:15.765+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"fcf7c39d-20ad-4df5-b9fd-9c08ee63b2b0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Expired token provided, please login again.\",\n                            \"url\": \"/v1/dump/data?models=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.392+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.398+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.442+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.455+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.456+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.465+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.466+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.466+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.467+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.468+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:16.468+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"673d08c5-478e-42fb-ba2f-3d273385fd8f\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.186+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.193+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.279+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.304+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.305+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.305+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.332+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.333+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.333+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.334+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.337+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.338+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.339+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.339+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.532+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:20.533+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"1d9ca7ea-28d0-4aca-80f9-e06a5aa5c5d2\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.660+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.712+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.726+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.737+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.737+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.738+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.738+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.739+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:47.740+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"5af65e43-15ce-47e4-9ea8-5c8327ee30ad\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.219+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12000,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.223+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.311+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.357+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.358+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.358+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.392+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.393+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.393+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.395+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.398+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.398+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.399+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:50.591+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"9fa83846-0d80-4a41-b88f-86c1dd52e171\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.390+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 11644,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.395+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.445+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.460+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.461+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.472+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.473+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.474+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.474+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.475+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.475+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.476+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.574+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.574+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:02.575+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"7441e19b-cd1c-4bb3-9361-8518d5f67633\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.710+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 12368,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.714+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.773+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.784+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.784+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.786+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:37.786+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"29937886-5f34-4412-a378-7a6d43ea0373\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.785+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.795+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.868+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.911+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.912+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.937+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.937+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.938+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.939+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.942+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.942+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.943+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:44.943+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.147 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.252+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:49:45.253+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"93a755c1-8e3e-4936-bc1b-1d044bf60ea4\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.487+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.490+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.536+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.563+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.564+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.664+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.665+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::related()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.671+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.672+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UserController\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\User::__construct()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\User\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.676+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v2\\\\User::query()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"model\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.677+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"notificationchannels\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.677+00:00\",\n                        \"level\": 200,\n                        \"message\": \"Throwing excepiton: Method does not exist: App\\\\Models\\\\Entities\\\\User->notificationchannels\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.679+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.680+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\InvalidRequestException(code: 0): Related resource notificationchannels is invalid for this endpoint. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/HandlesRelationships.php:222)\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.681+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.681+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:16:55.682+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"342346a3-dc72-4f67-8121-fab2d1316980\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\InvalidRequestException\",\n                            \"message\": \"Related resource notificationchannels is invalid for this endpoint.\",\n                            \"url\": \"/v2/users/f3042cbd-4160-43a8-93e9-0762e4c283f4/notificationchannels\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.917+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 14148,\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.921+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.965+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.977+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:37.987+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.049+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.058+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.059+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.061+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidateContentTypeMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.064+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\UsergroupController\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\Usergroup\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::store()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"inputData\": {\n                                \"data\": {\n                                    \"type\": \"usergroup\",\n                                    \"attributes\": {\n                                        \"name\": \"testers\",\n                                        \"permissions\": []\n                                    }\n                                }\n                            },\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::requireType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"requireType() - all good\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup - forbidId()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::preValidate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::validateOrFail()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::prepareRules()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.068+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\v1\\\\Usergroup::appendRelationships()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"called_from\": \"App\\\\Endpoints\\\\RestEndpoint\",\n                            \"attributes\": {\n                                \"name\": \"testers\",\n                                \"permissions\": []\n                            },\n                            \"relationships\": [],\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.073+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Validating attributes...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.075+00:00\",\n                        \"level\": 200,\n                        \"message\": \"The permissions field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"rules\": {\n                                \"name\": \"required|string|max:255|unique:usergroup,name\",\n                                \"permissions\": \"required|array\",\n                                \"saml_provisioning\": \"nullable\",\n                                \"saml_provisioning.attribute\": \"nullable|string\",\n                                \"saml_provisioning.value\": [\n                                    \"required_with:saml_provisioning\",\n                                    \"string\",\n                                    \"min:1\",\n                                    {\n                                        \"Closure\": []\n                                    }\n                                ]\n                            },\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.077+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.077+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The permissions field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The permissions field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/Concerns/ValidatesParameters.php:182)\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:24:38.079+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"ae156441-fa6f-4a18-8ad5-49d774a2b9e0\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The permissions field is required.\",\n                            \"url\": \"/v1/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.687+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.691+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.735+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.747+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.747+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.748+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.758+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.758+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.759+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/usergroups\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.820+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.829+00:00\",\n                        \"level\": 250,\n                        \"message\": \"Firebase\\\\JWT\\\\SignatureInvalidException: Signature verification failed\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.830+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.831+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.831+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Invalid token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:47)[previous exception] [object] (App\\\\Exceptions\\\\InvalidTokenException(code: 0): Signature verification failed at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:180)\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.832+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:43:34.833+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"b381887c-14c9-4c58-9588-35f6744e3181\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Invalid token provided, please login again.\",\n                            \"url\": \"/v2/usergroups\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.870+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13696,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.874+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.922+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.935+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.946+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.946+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.947+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.947+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.948+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:31.948+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"c9520004-a403-47e4-aabb-8bf4a3633eb7\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.411+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 13920,\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.425+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.531+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.559+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.569+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.569+00:00\",\n                        \"level\": 300,\n                        \"message\": \"SystemController::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.570+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.570+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"version\": \"1\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\SystemController\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.571+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v1\\\\System\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 300,\n                        \"message\": \"System endpoint::getOverview - Deprecated method\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.572+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\",\n                            \"url\": \"/v1/system\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:36.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"10cc1008-eae6-40c0-b90f-55662e5a211a\",\n                            \"url\": \"/v1/system\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": \"https://dev.exivity.net/\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.230+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.238+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.323+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.359+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.375+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.548+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.549+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.600+00:00\",\n                        \"level\": 250,\n                        \"message\": \"Firebase\\\\JWT\\\\SignatureInvalidException: Signature verification failed\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.602+00:00\",\n                        \"level\": 200,\n                        \"message\": \"JwtAuthMiddleware -Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.603+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.603+00:00\",\n                        \"level\": 400,\n                        \"message\": \"Invalid token provided, please login again.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\AuthException(code: 0): Invalid token provided, please login again. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Http/Middleware/JwtAuthMiddleware.php:47)[previous exception] [object] (App\\\\Exceptions\\\\InvalidTokenException(code: 0): Signature verification failed at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Token.php:180)\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.605+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"feb364c4-8052-4e51-9957-da93d80dc9df\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\AuthException\",\n                            \"message\": \"Invalid token provided, please login again.\",\n                            \"url\": \"/v2/users?page[limit]=1&page[offset]&sort&filter[attribute]&include=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.608+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 9396,\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.611+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.654+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.667+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.668+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.689+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.689+00:00\",\n                        \"level\": 400,\n                        \"message\": \"{\\\"request-id\\\":\\\"6c7d0b64-db90-424f-a8d9-36c6d081ae74\\\",\\\"exception\\\":\\\"[object] (Symfony\\\\\\\\Component\\\\\\\\HttpKernel\\\\\\\\Exception\\\\\\\\NotFoundHttpException(code: 0):  at phar://C:/exivity_acme/program/web/proximity/proximity.phar/vendor/laravel/framework/src/Illuminate/Routing/AbstractRouteCollection.php:43)\\\"}\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:47.690+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"6c7d0b64-db90-424f-a8d9-36c6d081ae74\",\n                            \"exception class\": \"Symfony\\\\Component\\\\HttpKernel\\\\Exception\\\\NotFoundHttpException\",\n                            \"message\": \"\",\n                            \"url\": \"/v2/users//key\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"POST\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.048+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Request received\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"pid\": 5964,\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.052+00:00\",\n                        \"level\": 100,\n                        \"message\": \"EventServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.093+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ValidatorServiceProvider::boot()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"HttpSecurityHeaders::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"CorsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.105+00:00\",\n                        \"level\": 100,\n                        \"message\": \"LeaveNoTraceMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.116+00:00\",\n                        \"level\": 100,\n                        \"message\": \"AnalyticsMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.116+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware::handle()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.117+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::validate()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.117+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.178+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.187+00:00\",\n                        \"level\": 100,\n                        \"message\": \"JwtAuthMiddleware - valid token\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.187+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::decode()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Token fingerprinter parameters\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"secure\": 1,\n                            \"ip\": \"127.0.0.1\",\n                            \"userAgent\": \"PostmanRuntime/7.29.0\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Decode token...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.188+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Token::getKey()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.190+00:00\",\n                        \"level\": 100,\n                        \"message\": \"ChecksRelations::getRelationType()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"class\": \"App\\\\Models\\\\Entities\\\\User\",\n                            \"attribute\": \"usergroup\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.194+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Http\\\\Controllers\\\\Api\\\\LogController::getEndpoint()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.194+00:00\",\n                        \"level\": 100,\n                        \"message\": \"App\\\\Endpoints\\\\Factory::createEndpoint() - Start creating Endpoint in Factory.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"version\": \"2\",\n                            \"from\": \"controller\",\n                            \"fromInstance\": \"App\\\\Http\\\\Controllers\\\\Api\\\\LogController\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.195+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Loading endpoint App\\\\Endpoints\\\\v2\\\\Log\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.204+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - report()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.204+00:00\",\n                        \"level\": 400,\n                        \"message\": \"The component field is required.\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception\": \"[object] (App\\\\Http\\\\Exceptions\\\\ValidationException(code: 0): The component field is required. at phar://C:/exivity_acme/program/web/proximity/proximity.phar/app/Endpoints/SimpleEndpoint.php:32)\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render()\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.205+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Explicit HTTP exception returning JSON...\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:58:27.206+00:00\",\n                        \"level\": 100,\n                        \"message\": \"Handler - render() - Converting exception to user error message\",\n                        \"metadata\": {\n                            \"appName\": \"production\",\n                            \"request-id\": \"105dd1d0-5eae-4185-9a2f-9b145c006952\",\n                            \"exception class\": \"App\\\\Http\\\\Exceptions\\\\ValidationException\",\n                            \"message\": \"The component field is required.\",\n                            \"url\": \"/v2/logs?component=&limit=&filter=&truncate=\",\n                            \"ip\": \"127.0.0.1\",\n                            \"http_method\": \"GET\",\n                            \"server\": \"localhost\",\n                            \"referrer\": null\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"9c09ca13-522f-490d-b9c7-3a77935304a9","name":"Extract","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=extract&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"extract","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:11:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-yE2UzvKFU7r2whBUlKHk86BlGOlxpXI6';style-src 'self' 'nonce-yE2UzvKFU7r2whBUlKHk86BlGOlxpXI6';font-src 'self' data:"},{"key":"Request-Id","value":"3eca1379-9eb1-42a4-b725-23aedf58daf0"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-extractor_scheduled_20220516-150653.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T15:06:53Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T15:06:53.711+00:00\",\n                        \"level\": 8,\n                        \"message\": \"----- Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.712+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Executing script: dummy-extractor.use\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Using custom CA cert file\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened input file 'system/config/use/dummy-extractor.use' (53 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Pre-processor completed (original: 53 bytes, new: 21 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing script 'system/config/use/dummy-extractor.use'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Finished running script 'system/config/use/dummy-extractor.use'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 8,\n                        \"message\": \"USE script 'dummy-extractor.use' completed successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.715+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Script execution finished successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 4\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"61b4d220-470d-4b03-b2df-f53625ab8167","name":"Transform","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=transcript&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"transcript","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:12:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-NAxc3I9eC4XyZzKTov8F3w7XsIYJncpq';style-src 'self' 'nonce-NAxc3I9eC4XyZzKTov8F3w7XsIYJncpq';font-src 'self' data:"},{"key":"Request-Id","value":"03f5035b-55ac-4efe-bb82-5df4890a1303"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-transformer_scheduled_20220516-131448.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T13:14:48Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T13:14:48.915+00:00\",\n                        \"level\": 8,\n                        \"message\": \"---- Invocation ----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 2 | Logical CPUs: 2\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Installed RAM: 4.00Gb | RAM available to OS: 4.00Gb | RAM available to Transcript: 1.35Gb (34%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Logging level: DEBUG\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialisation starting ...\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.916+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Basedir: C:\\\\exivity_acme\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 1\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 69,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Scriptfile: dummy-transformer.trs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Data date: 20220514\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Set default options: quote='\\\"' separator=',' overwrite=ENABLED embed=DISABLED mode=STRICT services=READONLY\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised DSET list\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised local filter stack and associated filterators\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised runtime caching subsystem\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialisation completed successfully\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Input file 'dummy-transformer.trs' processed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Initialised date range iterator: 20220514 - 20220517\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"There are 4 days in the specified range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'baseDir' value: 'C:\\\\exivity_acme\\\\home'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'homeDir' value: 'C:\\\\exivity_acme\\\\home'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'exportDir' value: 'C:\\\\exivity_acme\\\\home/exported'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDate' value: '20220514'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDateStart' value: '1652486400'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDateEnd' value: '1652572799'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataYear' value: '2022'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataMonth' value: '05'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataMonthDays' value: '31'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Created new variable: 'dataDay' value: '14'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Initialised variables\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing script 'dummy-transformer.trs' for 20220514\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"==> Processing '#line' statement on line 1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processing file 'dummy-transformer.trs' from line 1 (depth 0)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"==> Processing 'import' statement on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Custom alias 'dummy-usage' specified on line 1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Unable to open input file 'system/extracted/2022/05/14_usage.csv' - No such file or directory\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Import of file 'system/extracted/2022/05/14_usage.csv' failed - aborted\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No RDF files for 20220514 were created or overwritten as no 'finish' statement was executed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 8,\n                        \"message\": \"Transcript task 'C:/exivity_acme/home/system/config/transcript/dummy-transformer.trs' for 20220514 failed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error running task for 20220514 and 'option continue' is set to DISABLED\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.988+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"db4ba82b-b3f9-4af3-b428-39af98ab5833","name":"Prepare report","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=edify&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"edify","description":"Required, in: use, transcript, edify, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:12:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-5ZKbXz8SrX8DqAYjpxLponklrEptwqdD';style-src 'self' 'nonce-5ZKbXz8SrX8DqAYjpxLponklrEptwqdD';font-src 'self' data:"},{"key":"Request-Id","value":"4dd81360-5fcd-47d7-ba58-753de4f5912a"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"dummy-report_scheduled_20220516-151158.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-16T15:11:58Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-16T15:11:58.789+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 51,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 2 | Logical CPUs: 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 4.00Gb | RAM available to OS: 4.00Gb | RAM available to Edify: 1.33Gb (34%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.840+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: C:\\\\exivity_acme\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 51\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.841+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_Workflow_step_eac6fbd1_770b_448c_a6ea_ba1cb54e0ef6' (182 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_Workflow_step_eac6fbd1_770b_448c_a6ea_ba1cb54e0ef6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Sat May 14 00:00:00 2022 (falls within 20220514)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Sun May 15 23:59:59 2022 (falls within 20220515)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: May  9 2022 10:05:57\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.842+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_syncAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for the default date range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.860+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.862+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.864+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 142 rate revisions for 'allauto.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 12,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20220514 - 20220515\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20220501 - 20220531 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 281,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 370\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"7852855a-b502-496d-9a5b-6d4d5576c979","name":"Chronos","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=chronos&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"chronos","description":"Required, in: use, transcript, edify, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:13:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-UveTqP3XWczoSt9dDQ324II53osuG3m2';style-src 'self' 'nonce-UveTqP3XWczoSt9dDQ324II53osuG3m2';font-src 'self' data:"},{"key":"Request-Id","value":"2a8be6dd-0341-4cde-a6c9-f96fe24c5747"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"chronos.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:43Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-12T19:56:43.502+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start of new session\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:167\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:43.539+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Init completed\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:181\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:44.879+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Cannot connect to RabbitMQ server - retrying in 5 seconds\",\n                        \"metadata\": {\n                            \"source\": \"mqconn/connect.go:46\",\n                            \"error\": \"dial tcp [::1]:5672: connectex: No connection could be made because the target machine actively refused it.\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.961+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Queues declared\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:102\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Chronos started\",\n                        \"metadata\": {\n                            \"source\": \"chronos/chronos.go:116\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to listen for stop\",\n                        \"metadata\": {\n                            \"source\": \"chronos/stop.go:15\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:30\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to send heartbeats\",\n                        \"metadata\": {\n                            \"source\": \"chronos/heartbeats.go:24\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing to listen for configuration changed events\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:13\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:49.968+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started to send heartbeats\",\n                        \"metadata\": {\n                            \"source\": \"chronos/heartbeats.go:41\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started listening for configuration changed events\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started to listen for stop\",\n                        \"metadata\": {\n                            \"source\": \"chronos/stop.go:69\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:50.100+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.710+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.186+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.662+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.143+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.595+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:10.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:11.314+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:13:11.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.699+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.773+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.798+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:24.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:25.532+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:25.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.841+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.933+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:15:05.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:06.221+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:25:06.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.105+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.144+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.224+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.297+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.593+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:26:16.660+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.769+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:43.200+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:43.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:01.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:01.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:06.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Client ordered to refresh\",\n                        \"metadata\": {\n                            \"source\": \"chronos/configuration_change.go:68\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:55:06.527+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting to run workflows\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:44\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.672+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Message published successfully\",\n                        \"metadata\": {\n                            \"source\": \"chronos/run_workflow.go:152\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"1e789ff4-f8c5-4b8c-ab7f-395dbca41f71","name":"Horizon","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=horizon&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"horizon","description":"Required, in: use, transcript, edify, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:13:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-nXeOPar8mdYYK4qIpcRuSip5QMSv1xQz';style-src 'self' 'nonce-nXeOPar8mdYYK4qIpcRuSip5QMSv1xQz';font-src 'self' data:"},{"key":"Request-Id","value":"71dce77e-0d4d-4d79-94fe-1af152c7cca1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"horizon.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-13T15:57:23Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": \"2022-05-13T15:57:23.623+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:31\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.715+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Cannot get revision\",\n                        \"metadata\": {\n                            \"source\": \"horizon/dbaccess.go:67\",\n                            \"error\": \"sql: no rows in result set\",\n                            \"stacktrace\": \"main.getBudgetRevision\\n\\tD:/a/horizon/horizon/dbaccess.go:67\\nmain.processBudget\\n\\tD:/a/horizon/horizon/horizon.go:198\\nmain.main\\n\\tD:/a/horizon/horizon/horizon.go:37\\nruntime.main\\n\\tC:/hostedtoolcache/windows/go/1.17.9/x64/src/runtime/proc.go:255\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.715+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Budget calculation failed\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:40\",\n                            \"error\": \"cannot find revision for 2:20160101\",\n                            \"stacktrace\": \"main.main\\n\\tD:/a/horizon/horizon/horizon.go:40\\nruntime.main\\n\\tC:/hostedtoolcache/windows/go/1.17.9/x64/src/runtime/proc.go:255\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.588+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:31\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Budget revision requires validation\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:216\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.791+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Stopped\",\n                        \"metadata\": {\n                            \"source\": \"horizon/horizon.go:33\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"ac47af43-9347-4e94-9842-6a7ba6e2ce4f","name":"Merlin","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=merlin&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"merlin","description":"Required, in: use, transcript, edify, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:14:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-8nCflndnG9RLUeHfzwFTIOqLXBHrUZQJ';style-src 'self' 'nonce-8nCflndnG9RLUeHfzwFTIOqLXBHrUZQJ';font-src 'self' data:"},{"key":"Request-Id","value":"af0ef147-fff7-4185-8490-38a4546bfac1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"merlin.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:45Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 4,\n                        \"message\": \"\\\"gni\\\"i{\\\"o{\\\"level\\\":\\\"warn\\\",\\\"ts\\\":\\\"2022-05-12T19:56:47.281Z\\\",\\\"caller\\\":\\\"mqconn/connect.go:46\\\",\\\"msg\\\":\\\"Cannot connect to RabbitMQ server - retrying in 5 seconds\\\",\\\"error\\\":\\\"dial tcp [::1]:5672: connectex: No connection could be made because the target machine actively refused it.\\\"}\",\n                        \"metadata\": {\n                            \"source\": \"\\\"caller\\\":\\\"mqconn/connect.go:46\\\"\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"CPU info\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:132\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Physical memory info\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:141\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Merlin started\",\n                        \"metadata\": {\n                            \"source\": \"merlin/merlin.go:166\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.333+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.332+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.335+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:52.341+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"merlin/mq_helpers.go:63\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.908+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.909+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.911+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.231+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.998+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.998+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:17.336+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.046+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.258+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.283+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.436+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.856+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.858+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.858+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.211+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.440+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.447+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.449+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.481+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.529+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.582+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.825+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.155+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.186+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.235+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.235+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.296+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.488+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.308+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.335+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.347+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.347+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.383+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.383+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.409+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.419+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.476+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.505+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.567+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.567+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.593+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.701+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.553+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.641+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.676+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.945+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.946+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.946+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:53.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.126+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.877+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.942+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.981+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.054+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.058+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.097+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.098+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.125+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.165+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.118+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.118+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.724+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.575+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.805+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.640+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.094+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.251+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.329+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.407+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.447+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.293+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:57.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.994+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.141+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.176+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.177+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.177+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.328+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.359+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.360+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.360+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.243+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.281+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.317+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.328+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.354+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:08.060+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.788+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.804+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.814+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.220+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.256+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.282+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.292+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.317+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.769+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.795+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.807+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.807+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.808+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.844+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.869+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.879+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.879+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.906+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.306+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.330+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.403+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.662+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.035+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.114+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.351+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.384+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.422+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.440+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.441+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.441+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.721+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.585+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.636+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.712+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.712+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.713+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.764+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.765+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.765+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.801+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.811+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.837+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.885+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.888+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.888+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.931+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.005+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.015+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.222+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.079+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.130+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.155+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.187+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.250+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.834+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.882+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.936+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.310+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.472+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.485+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:36.113+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.680+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.721+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.920+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.920+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.004+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run sync job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:179\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.670+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.670+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.085+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.099+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.737+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.790+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.178+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.337+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Program failed\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:306\",\n                            \"error\": \"exit status 1\",\n                            \"stacktrace\": \"main.execute\\n\\tD:/a/merlin/merlin/runprog.go:306\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:138\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got command to run async job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:177\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Executing job\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:258\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Program finished\",\n                        \"metadata\": {\n                            \"source\": \"merlin/runprog.go:321\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"48f14c1e-6789-4d8a-a0dd-e52e4588bf15","name":"Griffon","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=griffon&limit=1&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"griffon","description":"Required, in: use, transcript, edify, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"1","description":"Limit the maximum number of  logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 16 May 2022 15:14:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ibAcRZsarVuPwl3hgBNIalsrTahnM2Y3';style-src 'self' 'nonce-ibAcRZsarVuPwl3hgBNIalsrTahnM2Y3';font-src 'self' data:"},{"key":"Request-Id","value":"f43dcab5-462a-4e2e-b23a-458fe73d11f1"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"griffon.log\",\n            \"attributes\": {\n                \"created\": \"2022-05-12T19:56:48Z\",\n                \"metadata\": [],\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 4,\n                        \"message\": \"0\\\":\\\"{\\\"level\\\":\\\"info\\\",\\\"ts\\\":\\\"2022-05-12T19:56:48.367Z\\\",\\\"caller\\\":\\\"griffon/griffon.go:59\\\",\\\"msg\\\":\\\"Griffon started\\\"}\",\n                        \"metadata\": {\n                            \"source\": \"\\\"caller\\\":\\\"griffon/griffon.go:59\\\"\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.410+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.411+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_kill.go:26\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.412+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.413+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:27\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.420+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.421+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:29\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.423+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.428+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.429+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.429+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/mq_helpers.go:61\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.430+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started consuming from queue '%s'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:34\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.433+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.438+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.442+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-12T19:56:48.450+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Declared queue\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:38\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.714+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.794+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:00.904+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T03:00:04.259+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.836+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:13.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.125+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:14.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.995+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:16.996+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.043+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.161+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.163+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.281+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T09:54:18.282+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:46.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.420+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.437+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.492+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.552+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:31:47.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:18.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.666+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T12:32:19.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.196+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.197+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.232+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:36:55.269+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.459+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:02.460+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.305+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.307+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.346+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.381+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.417+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.418+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.474+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:38:03.475+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.564+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.565+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.602+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.604+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.638+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.639+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.673+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:50.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.551+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.552+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.675+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:39:52.944+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.031+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.033+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.146+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.873+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.939+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:16.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.000+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.002+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.096+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.134+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T13:40:17.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.115+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:23.116+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-13T15:57:28.574+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.187+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.193+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:02.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.641+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T03:00:04.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:50:04.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.301+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:23.349+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.299+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.301+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.445+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:53.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.319+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:56.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:58.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.173+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.357+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:55:59.358+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.214+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.253+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.254+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.289+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.325+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:00.326+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:07.969+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.786+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:10.787+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.701+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.740+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.742+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.776+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.777+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.811+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:56:11.812+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.180+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.181+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.218+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.219+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.253+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.255+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.290+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T15:58:33.291+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.766+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.767+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.804+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.806+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.842+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.843+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:07:22.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.263+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.265+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.337+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.374+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-14T16:17:51.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.663+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:01.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.663+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-15T03:00:04.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.144+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:02.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T03:00:05.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.053+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.091+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.437+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.438+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:12:30.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.576+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.580+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.711+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.761+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.762+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.808+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:22.809+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.672+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.882+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.883+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:48.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.006+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:49.010+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:14:52.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:53.912+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.030+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.090+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.213+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T13:24:54.214+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.770+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.774+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.829+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.831+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.832+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.896+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:34.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.311+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.473+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:13:35.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.679+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.916+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.969+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:38.971+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.053+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T14:54:39.055+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created sync job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:210\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.605+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.610+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.665+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.667+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:53.761+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:06:54.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.673+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got RUN command with type\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_run.go:94\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.676+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created workflow job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:174\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.732+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.735+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.796+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:58.816+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.179+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.243+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created step job'\",\n                        \"metadata\": {\n                            \"source\": \"griffon/workflow.go:438\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.338+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Got status update for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/proc_status.go:70\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-05-16T15:11:59.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set status for job\",\n                        \"metadata\": {\n                            \"source\": \"griffon/jobs.go:380\"\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"},{"id":"eb050a37-7b8b-424d-ae17-f7132f3ad156","name":"Retrieve logfiles","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/logs?component=prepare_report&limit=&filter=&truncate=","host":["{{base_url}}"],"path":["v2","logs"],"query":[{"key":"component","value":"prepare_report","description":"Required, in: extract, transform, prepare_report, proximity, chronos, pigeon, horizon, merlin, griffon"},{"key":"limit","value":"","description":"Limit the maximum number of logfiles to return. Defaults to `100`."},{"key":"filter","value":"","description":"Optionally filter the logfiles by filename. Use the asterisk (`*`) for wildcard matching."},{"key":"truncate","value":"","description":"Whether to truncate the logfile lines. Use `0` to not disable truncating, or specify a number to receive the last `x` lines. Defaults to `1000`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 06 Sep 2022 14:01:31 GMT"},{"key":"Date","value":"Tue, 06 Sep 2022 14:01:31 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X0d00edd56d9883ed138224f72ae14045"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X0d00edd56d9883ed138224f72ae14045"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-yksZR8A8phK8U4wY2Du0f8Hrg2KTH3YH';style-src 'self' 'nonce-yksZR8A8phK8U4wY2Du0f8Hrg2KTH3YH';font-src 'self' data:"},{"key":"Request-Id","value":"0fe21284-c101-4296-bd7f-94d562a91a25"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"logfile\",\n            \"id\": \"test.log\",\n            \"attributes\": {\n                \"created\": \"2022-06-28T14:31:24Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '1.111100', account 41) against usage row 15\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 41 service_id: 87 instance_value: ICHIROU\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '0.999900', account 42) against usage row 16\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 42 service_id: 88 instance_value: vm-111556\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '1.000000', account 43) against usage row 17\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 43 service_id: 91 instance_value: dd_site_001\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '2.000000', account 44) against usage row 18\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 44 service_id: 91 instance_value: dd_site_002\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '3.000000', account 45) against usage row 19\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 45 service_id: 91 instance_value: bb_site_001\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '4.000000', account 46) against usage row 20\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 46 service_id: 91 instance_value: bb_site_002\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.657+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 20 usage cache entries for report 'test'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_51: UPDATE rdf_prepared SET last_prepared = $1 WHERE dset = $2 AND date = $3 and report_id = $4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Accepted 4 parameters on trust\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_51' (4 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_51\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.687+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_51: 4 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 30\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Freed 20 cache entries\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed RDF '25_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Opened RDF '26_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_47\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_48\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_49\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.697+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 40\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 41,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 1,\n                        \"message\": \"SQLite diagnostic 1: no such table: cache_rates in \\\"SELECT rowid,id,key,service_type,usage_col,rate_type,cogs_type,rate,rate_col,fixed_price,fixed_price_col,cogs,cogs_col,fixed_cogs,fixed_cogs_col FROM cache_rates WHERE dset='test\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: CRM Enterprise\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: MS Office Pro\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: VM Large W0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: VM Small T1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: Website Std.\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.738+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Building report cache for report 'test'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Large W0' (quantity '24.000000', account 27) against usage row 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 27 service_id: 89 instance_value: vm-125135\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Large W0' (quantity '92.000000', account 28) against usage row 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 28 service_id: 89 instance_value: vm-849843\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '1.000000', account 29) against usage row 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 29 service_id: 87 instance_value: charles01\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '1.000000', account 30) against usage row 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 30 service_id: 87 instance_value: henry07\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 31) against usage row 5\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 31 service_id: 88 instance_value: james_a\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 32) against usage row 6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 32 service_id: 88 instance_value: James_b\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Small T1' (quantity '47.998000', account 33) against usage row 7\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 33 service_id: 90 instance_value: vm-684442\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Small T1' (quantity '71.800000', account 34) against usage row 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 34 service_id: 90 instance_value: vm-573533\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '2.000000', account 35) against usage row 9\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 35 service_id: 87 instance_value: richard\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 36) against usage row 10\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 36 service_id: 88 instance_value: nicole\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '9.000000', account 37) against usage row 11\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 37 service_id: 87 instance_value: Gérard.P\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '3.000000', account 38) against usage row 12\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 38 service_id: 88 instance_value: Qâlyieèó\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '2.000000', account 39) against usage row 13\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 39 service_id: 87 instance_value: 大畠\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 40) against usage row 14\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 40 service_id: 88 instance_value: 昭雄昭夫\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '1.111100', account 41) against usage row 15\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 41 service_id: 87 instance_value: ICHIROU\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '0.999900', account 42) against usage row 16\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 42 service_id: 88 instance_value: vm-111556\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '1.000000', account 43) against usage row 17\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 43 service_id: 91 instance_value: dd_site_001\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '2.000000', account 44) against usage row 18\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 44 service_id: 91 instance_value: dd_site_002\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '3.000000', account 45) against usage row 19\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 45 service_id: 91 instance_value: bb_site_001\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '4.000000', account 46) against usage row 20\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 46 service_id: 91 instance_value: bb_site_002\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 20 usage cache entries for report 'test'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_52: UPDATE rdf_prepared SET last_prepared = $1 WHERE dset = $2 AND date = $3 and report_id = $4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Accepted 4 parameters on trust\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_52' (4 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_52\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.778+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_52: 4 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Freed 20 cache entries\",\n                        \"metadata\": {\n                            \"own\": 11,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed RDF '26_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Opened RDF '27_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_47\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_48\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_49\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": 162\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 162\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 162\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.819+00:00\",\n                        \"level\": 1,\n                        \"message\": \"SQLite diagnostic 1: no such table: cache_rates in \\\"SELECT rowid,id,key,service_type,usage_col,rate_type,cogs_type,rate,rate_col,fixed_price,fixed_price_col,cogs,cogs_col,fixed_cogs,fixed_cogs_col FROM cache_rates WHERE dset='test\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 162\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 162\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: CRM Enterprise\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: MS Office Pro\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: VM Large W0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: VM Small T1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Flattened rate information for service: Website Std.\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Building report cache for report 'test'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Large W0' (quantity '24.000000', account 27) against usage row 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 27 service_id: 89 instance_value: vm-125135\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'service_name' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Verified column 'UniqueID' exists in usage data\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Large W0' (quantity '92.000000', account 28) against usage row 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 28 service_id: 89 instance_value: vm-849843\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '2.000000', account 29) against usage row 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 29 service_id: 87 instance_value: charles01\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.829+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '1.000000', account 30) against usage row 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 30 service_id: 87 instance_value: henry07\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 31) against usage row 5\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 31 service_id: 88 instance_value: james_a\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 32) against usage row 6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 32 service_id: 88 instance_value: James_b\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Small T1' (quantity '48.000000', account 33) against usage row 7\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 33 service_id: 90 instance_value: vm-684442\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'VM Small T1' (quantity '72.000000', account 34) against usage row 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 34 service_id: 90 instance_value: vm-573533\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '2.000000', account 35) against usage row 9\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 35 service_id: 87 instance_value: richard\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 36) against usage row 10\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 36 service_id: 88 instance_value: nicole\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '19.000000', account 37) against usage row 11\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 37 service_id: 87 instance_value: Gérard.P\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.100000', account 38) against usage row 12\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 38 service_id: 88 instance_value: Qâlyieèó\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '4.000000', account 39) against usage row 13\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 39 service_id: 87 instance_value: 大畠\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '1.000000', account 40) against usage row 14\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 40 service_id: 88 instance_value: 昭雄昭夫\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'CRM Enterprise' (quantity '1.111100', account 41) against usage row 15\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 41 service_id: 87 instance_value: ICHIROU\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'MS Office Pro' (quantity '0.999900', account 42) against usage row 16\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 42 service_id: 88 instance_value: vm-111556\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '0.990000', account 43) against usage row 17\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 43 service_id: 91 instance_value: dd_site_001\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '2.000000', account 44) against usage row 18\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 44 service_id: 91 instance_value: dd_site_002\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '3.000000', account 45) against usage row 19\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 45 service_id: 91 instance_value: bb_site_001\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'CRM Enterprise'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt rate_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt cogs_col query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt instance resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt usage resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'MS Office Pro'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Large W0'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'VM Small T1'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing rate_lookup result for service 'Website Std.'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Rebuilt consumption resolution query\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Matched 'Website Std.' (quantity '4.100000', account 46) against usage row 20\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Inserted new entry into usage hash table (account_id: 46 service_id: 91 instance_value: bb_site_002\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 182\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 31,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 20 usage cache entries for report 'test'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_53: UPDATE rdf_prepared SET last_prepared = $1 WHERE dset = $2 AND date = $3 and report_id = $4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Accepted 4 parameters on trust\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_53' (4 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_53\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.870+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_53: 4 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 213\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Freed 20 cache entries\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed RDF '27_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Deleted shadow database: system/report/1_16660.rdf\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Will execute report 'test'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_54: SELECT id,name,dset,created,last_updated,lvl1_key_col,lvl2_key_col,lvl3_key_col,lvl4_key_col,lvl5_key_col FROM report WHERE name=$1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Detected 1 parameters\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_54' (1 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_54\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_54 contains 1 rows (10 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Report 'test' (ID 1) uses 5 columns\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_54: 1 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Validated that report 'test' (ID: 1) exists\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Report uses five columns in DSET 'test.usage': 'Reseller', 'Customer', 'Region', 'Department' and 'UniqueID'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_55: SELECT earliest_rdf,latest_rdf FROM rdf_summary WHERE dset='test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_55' (0 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_55\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_55 contains 1 rows (2 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_55: 0 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20170801 - 20170831 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Processing subscriptions\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_56: SELECT id, account_id, service_id, quantity, rate, cogs, start_date, end_date, instance, charge_day, alt_interval, name FROM service_subscription WHERE account_id IN (SELECT id FROM account WHERE report_id = 1) AND start_date <= 20170831 AND (end_date IS NULL OR end_date >= 20170801)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_56' (0 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_57: SELECT account_id, rate, cogs FROM rate WHERE service_id = $1 AND (account_id = $2 OR account_id IS NULL) AND effective_date <= $3 ORDER BY account_id, effective_date DESC LIMIT 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Detected 3 parameters\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_57' (3 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_58: SELECT interval, charge_model, rate_type, cogs_type FROM service WHERE id=$1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Detected 1 parameters\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_58' (1 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_59: SELECT parent_id FROM account WHERE id=$1 LIMIT 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Accepted 1 parameters on trust\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_59' (1 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.880+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_56\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_56 contains 0 rows (12 columns)\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_58: 1 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_57: 3 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_56: 0 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Finished processing subscriptions\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/01_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/02_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/03_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/04_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/05_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/06_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/07_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/08_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/09_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/10_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/11_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/12_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/13_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/14_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/15_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/16_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/17_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/18_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/19_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/20_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/21_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/22_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/23_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/24_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Opened RDF '25_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170825 (instance:'大畠'): account:39 quantity:2.00000000 rate:2.50000000 = subtotal:5.00000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:39 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170825 (instance:'Gérard.P'): account:37 quantity:9.00000000 rate:2.50000000 = subtotal:22.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:37 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170825 (instance:'richard'): account:35 quantity:2.00000000 rate:2.50000000 = subtotal:5.00000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:35 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170825 (instance:'henry07'): account:30 quantity:1.00000000 rate:2.50000000 = subtotal:2.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:30 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170825 (instance:'ICHIROU'): account:41 quantity:1.11110000 rate:2.50000000 = subtotal:2.77775000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:41 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170825 (instance:'charles01'): account:29 quantity:1.00000000 rate:2.50000000 = subtotal:2.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:29 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:88 on 20170825 (instance:'vm-111556'): account:42 quantity:0.99990000 rate:1.20000000 = subtotal:1.19988000 cogs:0.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:42 service_id:88\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:88 on 20170825 (instance:'James_b'): account:32 quantity:1.00000000 rate:1.20000000 = subtotal:1.20000000 cogs:0.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:32 service_id:88\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:88 on 20170825 (instance:'Qâlyieèó'): account:38 quantity:3.00000000 rate:1.20000000 = subtotal:3.60000000 cogs:0.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:38 service_id:88\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:88 on 20170825 (instance:'nicole'): account:36 quantity:1.00000000 rate:1.20000000 = subtotal:1.20000000 cogs:0.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:36 service_id:88\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:88 on 20170825 (instance:'james_a'): account:31 quantity:1.00000000 rate:1.20000000 = subtotal:1.20000000 cogs:0.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:31 service_id:88\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:88 on 20170825 (instance:'昭雄昭夫'): account:40 quantity:1.00000000 rate:1.20000000 = subtotal:1.20000000 cogs:0.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:40 service_id:88\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:89 on 20170825 (instance:'vm-125135'): account:27 quantity:24.00000000 rate:17.11240000 = subtotal:410.69760000 cogs:13.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:27 service_id:89\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:89 on 20170825 (instance:'vm-849843'): account:28 quantity:92.00000000 rate:17.11240000 = subtotal:1574.34080000 cogs:13.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:28 service_id:89\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:90 on 20170825 (instance:'vm-684442'): account:33 quantity:48.00000000 rate:2.00030000 = subtotal:96.01440000 cogs:1.00020000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:33 service_id:90\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:90 on 20170825 (instance:'vm-573533'): account:34 quantity:72.00000000 rate:2.00030000 = subtotal:144.02160000 cogs:1.00020000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:34 service_id:90\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:91 on 20170825 (instance:'dd_site_002'): account:44 quantity:2.00000000 rate:15.15000000 = subtotal:30.30000000 cogs:11.11000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:44 service_id:91\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:91 on 20170825 (instance:'dd_site_001'): account:43 quantity:1.00000000 rate:15.15000000 = subtotal:15.15000000 cogs:11.11000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:43 service_id:91\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:91 on 20170825 (instance:'bb_site_001'): account:45 quantity:3.00000000 rate:15.15000000 = subtotal:45.45000000 cogs:11.11000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:45 service_id:91\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:91 on 20170825 (instance:'bb_site_002'): account:46 quantity:4.00000000 rate:15.15000000 = subtotal:60.60000000 cogs:11.00000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170825 month:201708 account_id:46 service_id:91\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed RDF '25_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Opened RDF '26_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170826 (instance:'大畠'): account:39 quantity:2.00000000 rate:2.50000000 = subtotal:5.00000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:39 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170826 (instance:'Gérard.P'): account:37 quantity:9.00000000 rate:2.50000000 = subtotal:22.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:37 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170826 (instance:'richard'): account:35 quantity:2.00000000 rate:2.50000000 = subtotal:5.00000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:35 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170826 (instance:'henry07'): account:30 quantity:1.00000000 rate:2.50000000 = subtotal:2.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:30 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170826 (instance:'ICHIROU'): account:41 quantity:1.11110000 rate:2.50000000 = subtotal:2.77775000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:41 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170826 (instance:'charles01'): account:29 quantity:1.00000000 rate:2.50000000 = subtotal:2.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:29 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:89 on 20170826 (instance:'vm-125135'): account:27 quantity:24.00000000 rate:17.21350000 = subtotal:413.12400000 cogs:13.90030000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:27 service_id:89\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:89 on 20170826 (instance:'vm-849843'): account:28 quantity:92.00000000 rate:17.21350000 = subtotal:1583.64200000 cogs:13.90030000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:28 service_id:89\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:90 on 20170826 (instance:'vm-684442'): account:33 quantity:47.99800000 rate:2.00030000 = subtotal:96.01039940 cogs:1.00020000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:33 service_id:90\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:90 on 20170826 (instance:'vm-573533'): account:34 quantity:71.80000000 rate:2.00030000 = subtotal:143.62154000 cogs:1.00020000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170826 month:201708 account_id:34 service_id:90\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed RDF '26_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Opened RDF '27_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170827 (instance:'大畠'): account:39 quantity:4.00000000 rate:2.50000000 = subtotal:10.00000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:39 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170827 (instance:'Gérard.P'): account:37 quantity:19.00000000 rate:2.50000000 = subtotal:47.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:37 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170827 (instance:'richard'): account:35 quantity:2.00000000 rate:2.50000000 = subtotal:5.00000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:35 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170827 (instance:'henry07'): account:30 quantity:1.00000000 rate:2.50000000 = subtotal:2.50000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:30 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170827 (instance:'ICHIROU'): account:41 quantity:1.11110000 rate:2.50000000 = subtotal:2.77775000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:41 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:87 on 20170827 (instance:'charles01'): account:29 quantity:2.00000000 rate:2.50000000 = subtotal:5.00000000 cogs:2.20000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:29 service_id:87\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:89 on 20170827 (instance:'vm-125135'): account:27 quantity:24.00000000 rate:17.11240000 = subtotal:410.69760000 cogs:13.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:27 service_id:89\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:89 on 20170827 (instance:'vm-849843'): account:28 quantity:92.00000000 rate:17.11240000 = subtotal:1574.34080000 cogs:13.80000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:28 service_id:89\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:90 on 20170827 (instance:'vm-684442'): account:33 quantity:48.00000000 rate:2.00030000 = subtotal:96.01440000 cogs:1.00020000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:33 service_id:90\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance (new): service:90 on 20170827 (instance:'vm-573533'): account:34 quantity:72.00000000 rate:2.00030000 = subtotal:144.02160000 cogs:1.00020000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Service: new record for day:20170827 month:201708 account_id:34 service_id:90\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance: updated COGS charge for account_id:46 service_id:91 on 20170827 (instance 'bb_site_002') to 45.55100000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Instance: updated account_id:46 service_id:91 on 20170827 (instance: 'bb_site_002') quantity 4.10000000: rate: 15.15000000 = unit_based_subtotal: 62.11500000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed RDF '27_test.usage.rdf'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/28_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/29_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/30_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.890+00:00\",\n                        \"level\": 1,\n                        \"message\": \"c:\\\\exivity\\\\home/system/report/2017/08/31_test.usage.rdf does not exist (skipping)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.940+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 50,\n                            \"cumulative\": 283\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.940+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 283\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 20,\n                            \"cumulative\": 303\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_1\",\n                        \"metadata\": {\n                            \"own\": 21,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Opened transaction for output results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170801 to 20170831\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Initialised PSQL COPY operation\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Candidate query for stmt_60: SELECT adjustment_id,amount,type,first_interval,last_interval FROM adj_lookup WHERE account_id=$1 AND service_id=$2 ORDER BY account_id, type DESC, sort, adjustment_id\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Detected 2 parameters\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Prepared statement 'stmt_60' (2 parameters)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Writing non-tiered instance-level results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:39 service ID:87 as (quantity 4.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 8.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:33 service ID:90 as (quantity 47.99800000000000 * cogs rate 1.00020000000000) + interval charge 0.00000000000000 = 48.00759960000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:41 service ID:87 as (quantity 1.11110000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.44442000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:41 service ID:87 as (quantity 1.11110000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.44442000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:35 service ID:87 as (quantity 2.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 4.40000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:44 service ID:91 as (quantity 2.00000000000000 * cogs rate 11.11000000000000) + interval charge 0.00000000000000 = 22.22000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:28 service ID:89 as (quantity 92.00000000000000 * cogs rate 13.90030000000000) + interval charge 0.00000000000000 = 1278.82760000000007\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:35 service ID:87 as (quantity 2.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 4.40000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:30 service ID:87 as (quantity 1.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.20000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.981+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:37 service ID:87 as (quantity 9.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 19.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 324\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:37 service ID:87 as (quantity 9.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 19.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:31 service ID:88 as (quantity 1.00000000000000 * cogs rate 0.80000000000000) + interval charge 0.00000000000000 = 0.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:33 service ID:90 as (quantity 48.00000000000000 * cogs rate 1.00020000000000) + interval charge 0.00000000000000 = 48.00960000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:42 service ID:88 as (quantity 0.99990000000000 * cogs rate 0.80000000000000) + interval charge 0.00000000000000 = 0.79992000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:45 service ID:91 as (quantity 3.00000000000000 * cogs rate 11.11000000000000) + interval charge 0.00000000000000 = 33.33000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:39 service ID:87 as (quantity 2.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 4.40000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:29 service ID:87 as (quantity 1.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.20000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:32 service ID:88 as (quantity 1.00000000000000 * cogs rate 0.80000000000000) + interval charge 0.00000000000000 = 0.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:30 service ID:87 as (quantity 1.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.20000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:34 service ID:90 as (quantity 72.00000000000000 * cogs rate 1.00020000000000) + interval charge 0.00000000000000 = 72.01439999999999\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:41 service ID:87 as (quantity 1.11110000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.44442000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:27 service ID:89 as (quantity 24.00000000000000 * cogs rate 13.80000000000000) + interval charge 0.00000000000000 = 331.20000000000005\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:28 service ID:89 as (quantity 92.00000000000000 * cogs rate 13.80000000000000) + interval charge 0.00000000000000 = 1269.60000000000014\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:33 service ID:90 as (quantity 48.00000000000000 * cogs rate 1.00020000000000) + interval charge 0.00000000000000 = 48.00960000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:34 service ID:90 as (quantity 71.80000000000000 * cogs rate 1.00020000000000) + interval charge 0.00000000000000 = 71.81435999999999\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:35 service ID:87 as (quantity 2.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 4.40000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:09.991+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:27 service ID:89 as (quantity 24.00000000000000 * cogs rate 13.90030000000000) + interval charge 0.00000000000000 = 333.60719999999998\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:36 service ID:88 as (quantity 1.00000000000000 * cogs rate 0.80000000000000) + interval charge 0.00000000000000 = 0.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:46 service ID:91 as (quantity 4.10000000000000 * cogs rate 11.11000000000000) + interval charge 0.00000000000000 = 45.55099999999999\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:29 service ID:87 as (quantity 1.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.20000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:28 service ID:89 as (quantity 92.00000000000000 * cogs rate 13.80000000000000) + interval charge 0.00000000000000 = 1269.60000000000014\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:29 service ID:87 as (quantity 2.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 4.40000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:30 service ID:87 as (quantity 1.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 2.20000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:27 service ID:89 as (quantity 24.00000000000000 * cogs rate 13.80000000000000) + interval charge 0.00000000000000 = 331.20000000000005\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:43 service ID:91 as (quantity 1.00000000000000 * cogs rate 11.11000000000000) + interval charge 0.00000000000000 = 11.11000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:38 service ID:88 as (quantity 3.00000000000000 * cogs rate 0.80000000000000) + interval charge 0.00000000000000 = 2.40000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:40 service ID:88 as (quantity 1.00000000000000 * cogs rate 0.80000000000000) + interval charge 0.00000000000000 = 0.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:39 service ID:87 as (quantity 2.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 4.40000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:37 service ID:87 as (quantity 19.00000000000000 * cogs rate 2.20000000000000) + interval charge 0.00000000000000 = 41.80000000000000\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Calculated COGS for account ID:34 service ID:90 as (quantity 72.00000000000000 * cogs rate 1.00020000000000) + interval charge 0.00000000000000 = 72.01439999999999\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.001+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Writing non-tiered service-level results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 344\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.011+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 354\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 11,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.022+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 365\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.032+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 375\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.042+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 385\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.052+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.062+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 405\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.072+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 415\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.082+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 425\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Reset statement: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Executing: stmt_60\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.092+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Result for stmt_60 contains 0 rows (5 columns)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 435\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.102+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 445\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.102+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_60: 2 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 445\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.124+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 40 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 22,\n                            \"cumulative\": 467\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.151+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Index on pgp table created\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": 494\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.165+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Deallocated instance-level hash table (40 populated slots and 0 collision list entries)\",\n                        \"metadata\": {\n                            \"own\": 14,\n                            \"cumulative\": 508\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.205+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Deallocated service-level hash table (40 populated slots and 0 collision list entries)\",\n                        \"metadata\": {\n                            \"own\": 40,\n                            \"cumulative\": 548\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.205+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 548\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.205+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 548\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.205+00:00\",\n                        \"level\": 0,\n                        \"message\": \"Deallocated SQL statement stmt_1: 4 parameters (0 dynamic)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 548\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.215+00:00\",\n                        \"level\": 1,\n                        \"message\": \"Closed database connection (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 558\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-06T08:13:10.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 558\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.51.43.106489.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:51:43Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:51:43.345+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 116,\n                            \"cumulative\": 116\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 116\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.461+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 116\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.462+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.78Gb (18%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 117\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.462+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 117\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.467+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.51.43.106489' (77 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 122\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.51.43.106489\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_unprepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will apply unprepare process to all reports on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.491+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will unprepare all available dates on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.495+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Unpreparing report 'test'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 150\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.537+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report 'test' was unprepared for 3 days\",\n                        \"metadata\": {\n                            \"own\": 42,\n                            \"cumulative\": 192\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.537+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Completed unpreparing report 'test' (3 days were unprepared)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 192\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.538+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Unpreparing report 'Test report - 422'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 193\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.546+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report 'Test report - 422' was unprepared for 3 days\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": 201\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.546+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Completed unpreparing report 'Test report - 422' (3 days were unprepared)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 201\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.546+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Completed unpreparing all reports (a total of 6 report-days were unprepared)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 201\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.546+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 201\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:51:43.547+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 202\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.41.607886.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:41Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:41.666+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 65,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.731+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.731+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.731+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.66Gb (17%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.731+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.735+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.735+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.41.607886' (104 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.41.607886\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.759+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'Test account - 248'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.769+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:41.769+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.40.026279.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:40Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:40.090+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.145+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.145+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.145+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.145+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.70Gb (17%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.145+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.40.026279' (95 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.40.026279\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to DELETE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set account_id to 56 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Cached 1 child accounts\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.162+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 accounts\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.165+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:40.166+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 76\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.37.952854.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:38Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:38.114+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 61,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.175+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.176+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.63Gb (17%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.176+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.178+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.178+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.178+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.37.952854' (100 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.37.952854\",\n                        \"metadata\": {\n                            \"own\": 25,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'My new account'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.209+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 95\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:38.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 95\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.23.823716.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:23Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:23.897+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.64Gb (17%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.954+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.954+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.954+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.23.823716' (90 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.23.823716\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Tue Aug  1 00:00:00 2017 (falls within 20170801)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Tue Aug  1 23:59:59 2017 (falls within 20170801)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20170801 - 20170801\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.980+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.983+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20170801 - 20170831 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.990+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processing subscription 'modified_test' ...\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.992+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 95\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.993+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 96\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:23.993+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 96\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.044+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 51,\n                            \"cumulative\": 147\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.044+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 147\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 39,\n                            \"cumulative\": 186\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.084+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 187\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.093+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170801 to 20170831\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.119+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": 222\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 45,\n                            \"cumulative\": 267\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.167+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 1 instance-level records and 1 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 270\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.243+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 76,\n                            \"cumulative\": 346\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.243+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 346\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:24.244+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 347\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.20.262096.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:20Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:20.318+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.373+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.373+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.59Gb (17%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.373+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.20.262096' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.20.262096\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.376+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.380+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:20.381+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 63\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.19.300197.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:19.352+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.410+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 58,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.410+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.410+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.411+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.11Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.411+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.414+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.414+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.414+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.19.300197' (104 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.19.300197\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.415+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'Test account - 539'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.425+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:19.425+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.18.511619.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:18Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:18.532+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.587+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.587+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.587+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.587+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.11Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.587+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.590+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.590+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.590+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.18.511619' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.18.511619\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.614+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.615+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.616+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.616+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.617+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 85\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.18.342028.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:18Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:18.399+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 62,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.461+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.461+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.10Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.461+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.463+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.463+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.18.342028' (203 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.18.342028\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - 422'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.464+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.468+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - 422'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.469+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:18.470+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.16.397089.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:16Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:16.455+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.514+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.514+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.514+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.514+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.12Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.514+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.517+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.517+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.517+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.16.397089' (63 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.16.397089\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.518+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete service with ID of '85'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.534+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 service(s)\",\n                        \"metadata\": {\n                            \"own\": 16,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.534+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:16.534+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.15.174874.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:15Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:15.243+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.315+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 72,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.315+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.315+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.315+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.12Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.315+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.15.174874' (131 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.15.174874\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.320+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.329+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.331+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 6 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.333+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 96\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 96\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 96\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.342+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 99\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.342+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 99\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.342+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 99\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.344+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 101\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.344+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 101\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.344+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 101\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.345+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.345+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.349+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 106\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 107\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 107\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.403+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 53,\n                            \"cumulative\": 160\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.403+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 160\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.433+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": 190\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.434+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 191\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.439+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.466+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": 223\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.537+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 71,\n                            \"cumulative\": 294\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.539+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 40 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 296\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.607+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 68,\n                            \"cumulative\": 364\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.607+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 364\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:15.607+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 364\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.14.205396.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:14Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:14.258+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.315+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.315+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.315+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.315+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.13Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.315+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.317+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.14.205396' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.14.205396\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.318+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.321+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:14.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 64\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.13.019460.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:13Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:13.065+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.124+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.124+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.124+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.124+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.16Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.124+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.126+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.13.019460' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.13.019460\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.127+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.130+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.130+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:13.131+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 66\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.11.913229.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:11Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:11.960+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.020+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 60,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.020+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.020+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.020+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.20Gb (14%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.020+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.022+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.023+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.023+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.11.913229' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.11.913229\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.047+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.051+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.051+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:12.051+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.09.408446.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:09Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:09.470+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.546+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 76,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.546+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.546+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.546+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.25Gb (15%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.546+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.550+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.550+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.550+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.09.408446' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.09.408446\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.573+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.578+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 5 records\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.578+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:09.579+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 109\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.49.02.673950.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:49:02Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:49:02.735+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.809+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 74,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.809+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.809+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.809+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.27Gb (15%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.809+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.813+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.814+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.49.02.673950' (59 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.49.02.673950\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.838+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete report_id 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.875+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 37,\n                            \"cumulative\": 140\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.918+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 43,\n                            \"cumulative\": 183\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:49:02.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 183\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.48.58.317367.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:48:58Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:48:58.396+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.475+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 79,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.475+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.475+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.475+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.26Gb (15%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.475+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.480+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.48.58.317367' (187 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.48.58.317367\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Fri Aug 25 00:00:00 2017 (falls within 20170825)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Sun Aug 27 23:59:59 2017 (falls within 20170827)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.504+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_syncAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.508+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 112\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.523+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170825\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": 127\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.524+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 128\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.527+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170826\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 131\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.528+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 132\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.531+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170827\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 135\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.532+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 136\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.532+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 136\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.532+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for the default date range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 136\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.538+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 8 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 142\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.541+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 145\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.543+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 147\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.547+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 151\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.547+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 151\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.548+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 152\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.548+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 152\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.583+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 35,\n                            \"cumulative\": 187\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.583+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 187\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.583+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 187\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.583+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 187\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.592+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.592+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.596+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.596+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.596+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.629+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 33,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.629+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 20 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 233\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.630+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 234\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.649+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 19,\n                            \"cumulative\": 253\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.649+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 253\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.650+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 254\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.650+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 254\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.694+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 44,\n                            \"cumulative\": 298\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.694+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 298\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.694+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 298\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.694+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 298\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 307\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 308\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.708+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 312\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.708+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 312\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 313\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 38,\n                            \"cumulative\": 351\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 20 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 351\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 351\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.766+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 19,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.766+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 370\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.767+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 371\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.767+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 371\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 43,\n                            \"cumulative\": 414\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 414\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 414\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.810+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 414\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 423\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 423\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.822+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 426\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.822+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 426\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.823+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 427\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.859+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 36,\n                            \"cumulative\": 463\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.859+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 20 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 463\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.861+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 465\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.880+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 19,\n                            \"cumulative\": 484\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.881+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 485\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.881+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 485\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.881+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20170825 - 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 485\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.881+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 485\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.883+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20170801 - 20170831 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 487\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 491\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.888+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 492\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.889+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 493\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.965+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 76,\n                            \"cumulative\": 569\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:58.965+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 569\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.024+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 628\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.039+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_2\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": 643\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.041+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170801 to 20170831\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 645\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 45,\n                            \"cumulative\": 690\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.174+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 88,\n                            \"cumulative\": 778\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.177+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 20 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 781\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.283+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 106,\n                            \"cumulative\": 887\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.283+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 887\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:59.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 888\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.48.56.071155.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:48:56Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:48:56.153+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 81,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.234+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.234+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.28Gb (15%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.234+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.237+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.48.56.071155' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.48.56.071155\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.239+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.241+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.246+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:56.246+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.48.54.805147.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:48:54Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:48:54.838+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.910+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 72,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.910+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.910+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.910+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.26Gb (15%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.910+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.913+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.913+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.48.54.805147' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.48.54.805147\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.914+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.916+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.918+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.918+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.48.54.611599.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:48:54Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:48:54.677+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.753+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 76,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.753+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.753+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.753+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.26Gb (15%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.753+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.756+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.757+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.757+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.48.54.611599' (206 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.757+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.48.54.611599\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.757+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.757+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - 775'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.758+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.760+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.760+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.764+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - 775'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.765+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:54.765+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-09-01T07.48.52.667447.log\",\n            \"attributes\": {\n                \"created\": \"2022-09-01T07:48:53Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-09-01T07:48:53.225+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.299+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 74,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.299+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.299+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.299+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 2.26Gb (15%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.299+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.302+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-09-01T07.48.52.667447' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-09-01T07.48.52.667447\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Sep  1 00:00:00 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Sep  1 23:59:59 2022 (falls within 20220901)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.303+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.304+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.304+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.304+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.304+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.306+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.312+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-09-01T07:48:53.312+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-08-02T15.06.22.645505.log\",\n            \"attributes\": {\n                \"created\": \"2022-08-02T15:06:22Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-08-02T15:06:22.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.774+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 65,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.774+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.774+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.774+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.41Gb (22%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.774+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.777+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.777+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.777+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-08-02T15.06.22.645505' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.798+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-08-02T15.06.22.645505\",\n                        \"metadata\": {\n                            \"own\": 21,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.798+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Tue Aug  2 00:00:00 2022 (falls within 20220802)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.798+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Tue Aug  2 23:59:59 2022 (falls within 20220802)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.798+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.798+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.799+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.799+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.799+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.803+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 10 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 94\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.803+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 94\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:22.804+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 95\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-08-02T15.05.51.751137.log\",\n            \"attributes\": {\n                \"created\": \"2022-08-02T15:06:11Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-08-02T15:06:11.266+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 61,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.46Gb (22%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.337+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.337+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.337+00:00\",\n                        \"level\": 5,\n                        \"message\": \"File 'system/config/edify/PROXIMITY_2022-08-02T15.05.51.751137' not found\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 74\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-08-02T15.05.35.994370.log\",\n            \"attributes\": {\n                \"created\": \"2022-08-02T15:06:11Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-08-02T15:06:11.266+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 61,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.46Gb (22%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.327+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.337+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.337+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.337+00:00\",\n                        \"level\": 5,\n                        \"message\": \"File 'system/config/edify/PROXIMITY_2022-08-02T15.05.35.994370' not found\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-08-02T15:06:11.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 74\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.57.51.547002.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:57:51Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:57:51.595+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.659+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 64,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.659+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.659+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.659+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.50Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.659+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.661+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.661+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.661+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.57.51.547002' (77 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.57.51.547002\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_unprepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will apply unprepare process to all reports on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.685+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will unprepare all available dates on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.688+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Unpreparing report 'test'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.725+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report 'test' was unprepared for 3 days\",\n                        \"metadata\": {\n                            \"own\": 37,\n                            \"cumulative\": 130\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.725+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Completed unpreparing report 'test' (3 days were unprepared)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 130\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.725+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Unpreparing report 'Test report - 257'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 130\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report 'Test report - 257' was unprepared for 3 days\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 135\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Completed unpreparing report 'Test report - 257' (3 days were unprepared)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 135\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Completed unpreparing all reports (a total of 6 report-days were unprepared)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 135\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.730+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 135\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:57:51.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 135\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.56.14.501020.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:56:14Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:56:14.552+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.617+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 65,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.617+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.617+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.617+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.61Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.617+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.619+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.620+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.620+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.56.14.501020' (104 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.56.14.501020\",\n                        \"metadata\": {\n                            \"own\": 25,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.645+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'Test account - 499'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.654+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:14.654+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.56.12.763329.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:56:12Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:56:12.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 65,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.915+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.915+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.60Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.915+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.917+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.56.12.763329' (95 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.56.12.763329\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to DELETE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set account_id to 56 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Cached 1 child accounts\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.929+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 accounts\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.934+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:12.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 85\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.56.10.586661.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:56:10Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:56:10.638+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 66,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.704+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.704+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.704+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.62Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.704+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.708+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.56.10.586661' (100 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.56.10.586661\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'My new account'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.717+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:56:10.717+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.54.833990.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:54Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:54.893+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.948+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.948+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.948+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.948+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.54Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.948+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.950+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.950+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.950+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.54.833990' (90 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.54.833990\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Tue Aug  1 00:00:00 2017 (falls within 20170801)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Tue Aug  1 23:59:59 2017 (falls within 20170801)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20170801 - 20170801\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.977+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20170801 - 20170831 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processing subscription 'modified_test' ...\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.988+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 95\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.989+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 96\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:54.989+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 96\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.039+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 50,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.039+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 146\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.066+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 174\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.071+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170801 to 20170831\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 178\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.094+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 201\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.164+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 70,\n                            \"cumulative\": 271\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.166+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 1 instance-level records and 1 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 273\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 332\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.225+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 332\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:55.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 332\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.50.949103.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:51Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:51.001+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.071+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 70,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.071+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.071+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.071+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.54Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.071+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.50.949103' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.50.949103\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.075+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.079+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.079+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:51.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 79\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.50.017714.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:50Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:50.088+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.157+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 69,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.157+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.157+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.157+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.55Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.157+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.160+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.160+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.160+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.50.017714' (104 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.50.017714\",\n                        \"metadata\": {\n                            \"own\": 25,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'Test account - 555'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.195+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 107\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:50.196+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 108\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.49.097301.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:49Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:49.125+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 169,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.294+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.294+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.294+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.56Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.294+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.296+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 171\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.297+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.297+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.49.097301' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.49.097301\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.321+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 196\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.323+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 198\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.325+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.325+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.326+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 201\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.48.917070.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:48Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:48.978+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 67,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.045+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.046+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.56Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.046+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.48.917070' (203 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.48.917070\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - 257'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.049+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.051+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.051+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.054+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - 257'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.054+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:49.055+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 77\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.46.969689.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:47Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:47.027+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.103+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 76,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.103+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.103+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.104+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.62Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.104+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.108+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.108+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.46.969689' (63 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.46.969689\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.109+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete service with ID of '74'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.130+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 service(s)\",\n                        \"metadata\": {\n                            \"own\": 21,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.130+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:47.131+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 104\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.45.720233.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:45Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:45.790+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.846+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.846+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.846+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.66Gb (24%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.846+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.45.720233' (131 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.45.720233\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.860+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.862+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 6 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.864+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.873+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.873+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.873+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.876+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.880+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.881+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.881+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 51,\n                            \"cumulative\": 142\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 142\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.959+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 170\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.963+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:45.990+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:46.061+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 71,\n                            \"cumulative\": 271\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:46.064+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 40 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 274\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:46.132+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 68,\n                            \"cumulative\": 342\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:46.132+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 342\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:46.133+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 343\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.44.692738.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:44Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:44.757+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.816+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.816+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.816+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.816+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.63Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.816+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.818+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.819+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.44.692738' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.44.692738\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.843+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.847+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.847+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:44.848+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 91\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.43.769465.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:43Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:43.815+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.872+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.872+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.872+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.872+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.64Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.872+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.874+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.874+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.875+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.43.769465' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.43.769465\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.899+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.903+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.903+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:43.903+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.42.836633.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:42Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:42.886+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.948+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 62,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.948+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.948+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.948+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.59Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.948+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.951+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.951+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.42.836633' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.42.836633\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.956+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.956+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:42.957+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.40.910143.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:40Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:40.971+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.031+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 60,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.031+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.031+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.032+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.63Gb (23%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.032+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.035+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.035+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.035+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.40.910143' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.40.910143\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.059+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.064+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 5 records\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.064+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:41.065+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 94\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.35.585196.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:35Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:35.633+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.706+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 73,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.706+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.706+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.706+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.67Gb (24%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.706+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.708+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.35.585196' (59 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.35.585196\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.709+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete report_id 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.741+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 32,\n                            \"cumulative\": 108\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.775+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 34,\n                            \"cumulative\": 142\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:35.776+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 143\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.32.774790.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:32Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:32.820+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.875+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.875+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.875+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.875+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.68Gb (24%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.876+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.878+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.32.774790' (187 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.32.774790\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Fri Aug 25 00:00:00 2017 (falls within 20170825)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Sun Aug 27 23:59:59 2017 (falls within 20170827)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.902+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_syncAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.904+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170825\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.917+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170825\",\n                        \"metadata\": {\n                            \"own\": 13,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170826\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.926+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170827\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 106\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.927+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 107\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.927+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 107\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.927+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for the default date range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 107\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 8 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 112\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 115\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 117\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 121\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 33,\n                            \"cumulative\": 154\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 154\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 154\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 154\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.983+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 163\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.983+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 163\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 166\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 166\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:32.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 166\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.012+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": 192\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.012+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 20 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 192\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.014+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 194\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.026+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 12,\n                            \"cumulative\": 206\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.027+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 207\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.027+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 207\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.027+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 207\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 40,\n                            \"cumulative\": 247\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 247\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.068+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 248\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.068+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 248\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.077+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 257\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.077+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 257\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 260\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 260\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 260\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.104+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 284\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.104+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 20 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 284\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.105+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 285\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.122+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 17,\n                            \"cumulative\": 302\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.122+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 302\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.122+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 302\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.122+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 302\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.162+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 40,\n                            \"cumulative\": 342\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.162+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 342\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.163+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 343\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.163+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 343\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.172+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 352\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.172+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 352\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 355\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 355\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 355\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.201+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": 381\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.201+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 20 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 381\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 383\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.215+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 12,\n                            \"cumulative\": 395\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.216+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 396\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 396\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20170825 - 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 396\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.216+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 396\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.218+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20170801 - 20170831 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 398\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 403\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 403\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.224+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 404\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.275+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 51,\n                            \"cumulative\": 455\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.275+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 455\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.303+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 28,\n                            \"cumulative\": 483\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.315+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_2\",\n                        \"metadata\": {\n                            \"own\": 12,\n                            \"cumulative\": 495\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.316+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170801 to 20170831\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 496\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.340+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 520\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.405+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 65,\n                            \"cumulative\": 585\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.407+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 20 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 587\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.502+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 95,\n                            \"cumulative\": 682\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.502+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 682\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:33.503+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 683\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.31.101711.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:31Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:31.163+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.219+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.225+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.225+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.225+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.75Gb (24%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.225+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.228+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.228+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.31.101711' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.31.101711\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.229+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.231+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.236+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:31.236+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.30.111409.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:30Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:30.135+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.192+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.192+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.192+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.192+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.72Gb (24%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.192+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.194+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.194+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.194+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.30.111409' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.30.111409\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.195+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.198+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.198+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.198+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.29.808045.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:29Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:29.865+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 169,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.034+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.035+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.72Gb (24%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 170\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.035+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 170\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 172\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.038+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.29.808045' (206 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.29.808045\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - 711'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.062+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.063+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 198\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.064+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 199\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.066+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - 711'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 201\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.067+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 202\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:30.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 202\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.55.28.620315.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:55:28Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:55:28.748+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.802+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 54,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.802+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.802+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.802+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.73Gb (24%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.802+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.805+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.805+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.805+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.55.28.620315' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.828+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.55.28.620315\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.828+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.828+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.828+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.829+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.829+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.829+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.829+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.829+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.829+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.831+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.835+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:55:28.836+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 88\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-28T12.38.43.983390.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-28T12:54:41Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-28T12:54:41.680+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 63,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.743+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.743+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.744+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 3.83Gb (25%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.744+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.747+00:00\",\n                        \"level\": 3,\n                        \"message\": \"User UUID not found in global DB: 5ee0cdca-2773-4b97-9f09-823b09198b46\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to '<Unknown>'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-28T12.38.43.983390' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-28T12.38.43.983390\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 28 00:00:00 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 28 23:59:59 2022 (falls within 20220728)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.748+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.750+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.754+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-28T12:54:41.754+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-25T14.24.19.883610.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-25T14:24:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-25T14:24:19.906+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.961+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.961+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.961+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.962+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.52Gb (29%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.962+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.964+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.964+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.964+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-25T14.24.19.883610' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-25T14.24.19.883610\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Mon Jul 25 00:00:00 2022 (falls within 20220725)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Mon Jul 25 23:59:59 2022 (falls within 20220725)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.990+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.993+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.994+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 88\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-25T14.24.19.656836.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-25T14:24:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-25T14:24:19.680+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 165,\n                            \"cumulative\": 165\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 165\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.845+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 165\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.845+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.52Gb (29%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 165\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.845+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 165\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.848+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 168\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-25T14.24.19.656836' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-25T14.24.19.656836\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Mon Jul 25 00:00:00 2022 (falls within 20220725)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Mon Jul 25 23:59:59 2022 (falls within 20220725)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.849+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 169\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.851+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 171\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.856+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 176\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.857+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 177\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-25T14.21.11.021672.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-25T14:24:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-25T14:24:19.418+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.588+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 170,\n                            \"cumulative\": 170\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.588+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 170\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.612+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 194\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.612+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.52Gb (29%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 194\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.612+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 194\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.615+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.615+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.616+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-25T14.21.11.021672' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 198\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.617+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-25T14.21.11.021672\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 199\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.617+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Mon Jul 25 00:00:00 2022 (falls within 20220725)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 199\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.617+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Mon Jul 25 23:59:59 2022 (falls within 20220725)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 199\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.617+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 199\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.618+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.618+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.618+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.618+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.618+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.618+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 200\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.622+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 204\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.629+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": 211\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-25T14:24:19.629+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 211\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.40.08.885378.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:40:08Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:40:08.913+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 167,\n                            \"cumulative\": 167\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 167\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.080+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 167\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.080+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.63Gb (30%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 167\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.080+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 167\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 170\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 170\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.084+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.40.08.885378' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 171\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.107+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.40.08.885378\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 194\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.107+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 194\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.108+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 195\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.110+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.116+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 203\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:09.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 204\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.40.08.728217.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:40:08Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:40:08.754+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.823+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 69,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.823+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.823+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.823+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.63Gb (30%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.823+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.827+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.828+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.828+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.40.08.728217' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.40.08.728217\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.852+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.854+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 100\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.859+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 105\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.860+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 106\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.40.08.479289.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:40:08Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:40:08.586+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.661+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 75,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.661+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.661+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.661+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.63Gb (30%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.661+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.663+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.664+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.664+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.40.08.479289' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.687+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.40.08.479289\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 101\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.688+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.689+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.695+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 109\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:40:08.695+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 109\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.39.45.553570.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:39:45Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:39:45.615+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 62,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.677+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.677+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.677+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.59Gb (29%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.677+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.680+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.680+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.680+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.39.45.553570' (59 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.39.45.553570\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.681+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete report_id 6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.719+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 38,\n                            \"cumulative\": 104\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.760+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 41,\n                            \"cumulative\": 145\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:45.760+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 145\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.39.31.815062.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:39:31Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 7,\n                        \"message\": \"r2022-07-21T14:39:31.880+00:00,7,------ Invocation -----\",\n                        \"metadata\": []\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": []\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.60Gb (30%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.39.31.815062' (187 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.39.31.815062\",\n                        \"metadata\": {\n                            \"own\": 25,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Fri Aug 25 00:00:00 2017 (falls within 20170825)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Sun Aug 27 23:59:59 2017 (falls within 20170827)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.966+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_syncAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.970+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170825\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.985+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.990+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170826\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.990+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Starting global RDF transaction to perform sync for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.996+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Added 8 accounts for 20170827\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.997+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:31.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for the default date range\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.002+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 8 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 6 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.006+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.010+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.010+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.010+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.010+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.043+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 33,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.043+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.043+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.044+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.052+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.052+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.086+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 14 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.087+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.102+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.102+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.103+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.103+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 46,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.159+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.162+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.162+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.162+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.200+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 38,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.200+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 14 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.202+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.221+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 19,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.221+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Modified test report' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.222+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.222+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.269+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 47,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.269+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.269+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.270+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.279+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.279+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.279+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.280+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.280+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.280+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.280+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.281+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.281+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.281+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.282+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.282+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.282+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.282+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.282+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.282+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.283+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 40,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 14 usage cache entries for report 'Modified test report'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.339+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20170825 - 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.339+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.342+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20170801 - 20170831 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.347+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.348+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.404+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.404+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.433+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 29,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.447+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_6\",\n                        \"metadata\": {\n                            \"own\": 14,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.448+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170801 to 20170831\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.490+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 42,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.572+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 82,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.573+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 22 instance-level records and 11 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.673+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 100,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.673+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:32.674+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.39.25.210273.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:39:25Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:39:25.292+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.352+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 60,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.352+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.352+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.352+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.62Gb (30%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.352+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.356+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.356+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.356+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.39.25.210273' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.39.25.210273\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 6\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.382+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.387+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 95\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:25.388+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 96\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.39.19.783793.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:39:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:39:19.809+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 61,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.870+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.870+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.870+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.59Gb (29%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.870+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.873+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.874+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.874+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.39.19.783793' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.39.19.783793\",\n                        \"metadata\": {\n                            \"own\": 21,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.895+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.897+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.899+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.899+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.899+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.39.19.578653.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:39:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:39:19.657+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 72,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.729+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.729+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.729+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.59Gb (29%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.729+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.39.19.578653' (206 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.39.19.578653\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - 972'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.733+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.735+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.735+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.740+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - 972'\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.741+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:39:19.741+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.22.15.525836.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:22:15Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:22:15.553+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.626+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 73,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.627+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.627+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.627+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.98Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.627+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.22.15.525836' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.655+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.22.15.525836\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.655+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.655+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.656+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.656+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.656+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.656+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.656+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.656+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.656+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.657+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 104\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.663+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 110\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.664+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 111\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.22.15.381452.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:22:15Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:22:15.428+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 65,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.493+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.493+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.98Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.493+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.497+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.497+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.22.15.381452' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.22.15.381452\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.498+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.500+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.506+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:22:15.507+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 79\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.18.41.379965.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:18:41Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:18:41.464+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.527+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 63,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.527+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.527+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.527+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.00Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.527+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.530+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.530+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.530+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.18.41.379965' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.530+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.18.41.379965\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.531+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.532+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.538+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:18:41.539+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 75\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.04.12.373215.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:04:12Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:04:12.425+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.486+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 61,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.486+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.486+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.486+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.06Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.486+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.04.12.373215' (63 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.04.12.373215\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.513+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete service with ID of '68'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.535+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 service(s)\",\n                        \"metadata\": {\n                            \"own\": 22,\n                            \"cumulative\": 110\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.535+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 110\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:12.536+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 111\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.04.09.774863.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:04:09Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 7,\n                        \"message\": \"Te2022-07-21T14:04:09.795+00:00,7,------ Invocation -----\",\n                        \"metadata\": []\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": []\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.850+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.04Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.850+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.04.09.774863' (337 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.04.09.774863\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.864+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.866+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 7 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.868+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.874+00:00\",\n                        \"level\": 2,\n                        \"message\": \"6 outdated cache records were deleted incl 6 for deleted rates\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.884+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.890+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.890+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 32,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.932+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Error preparing usage query while creating usage cache: no such column: unique_key\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.934+00:00\",\n                        \"level\": 2,\n                        \"message\": \"6 outdated cache records were deleted incl 6 for deleted rates\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.944+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.944+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.950+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.950+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 38,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.988+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.996+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.996+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.996+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Error preparing usage query while creating usage cache: no such column: unique_key\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.999+00:00\",\n                        \"level\": 2,\n                        \"message\": \"6 outdated cache records were deleted incl 6 for deleted rates\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.008+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.008+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.016+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.017+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.058+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 41,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.058+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.058+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.059+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.067+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Error preparing usage query while creating usage cache: no such column: unique_key\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.067+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.068+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.068+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.068+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.068+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.073+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.081+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 73,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.184+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.185+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.189+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.214+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 25,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.295+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 81,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.297+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 22 instance-level records and 22 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.365+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 68,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.365+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.365+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.365+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.370+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 2 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.371+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 7 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.371+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - 296' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.373+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.404+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 31,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.404+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.404+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.405+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.414+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.414+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.416+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.416+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.416+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.443+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.443+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 14 usage cache entries for report 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.445+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 17,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - 296' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.463+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.463+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.503+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 40,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.504+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.504+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.504+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.512+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.512+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.515+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.515+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.515+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.538+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.538+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 14 usage cache entries for report 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.539+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 16,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - 296' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.594+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 39,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.594+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.594+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.594+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.602+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.602+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.604+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.604+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.604+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.604+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.605+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.605+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.605+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.605+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.605+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.605+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.605+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.606+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.606+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.606+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.606+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.606+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.606+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.607+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.607+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.607+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.607+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.607+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 14 usage cache entries for report 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.632+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.646+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 14,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.647+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.647+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.647+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.647+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.650+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.651+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.652+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 51,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.703+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.715+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 12,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.716+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.720+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.828+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 81,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.830+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 22 instance-level records and 8 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.907+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 77,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.907+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.907+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.907+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.912+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 0 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.913+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 7 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.913+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - brand end-to-end networks' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.916+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.916+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.948+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 32,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.948+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.948+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.949+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.957+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.958+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.960+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.986+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 14 usage cache entries for report 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:10.987+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 18,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - brand end-to-end networks' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.005+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.042+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 37,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.042+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.042+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.042+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.051+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.051+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.054+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.054+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.054+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 14 usage cache entries for report 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.079+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 16,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - brand end-to-end networks' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.096+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.096+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.140+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 44,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.140+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.140+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.140+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.149+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.150+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.150+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.151+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.151+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.151+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.151+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.152+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.152+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.152+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.152+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.152+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.152+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 14 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 29,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.182+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 14 usage cache entries for report 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.183+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.199+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 16,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.199+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.199+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.199+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.199+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.203+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.204+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 14 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.254+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 50,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.254+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 13,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.268+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_4\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.272+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.299+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.354+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.357+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 22 instance-level records and 8 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.422+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 65,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.422+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:11.423+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.04.09.598829.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:04:09Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:04:09.647+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.706+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.707+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.707+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.707+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.04Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.707+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.710+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.710+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.710+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.04.09.598829' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.04.09.598829\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.736+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.739+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 92\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.739+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 92\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:09.740+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 93\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.04.08.725012.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:04:08Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:04:08.794+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.851+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.851+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.851+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.851+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.07Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.851+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.04.08.725012' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.04.08.725012\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.854+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.855+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.855+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.855+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.855+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.855+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.855+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.859+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.859+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:08.859+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 65\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.04.07.798379.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:04:07Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:04:07.851+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.905+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 54,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.905+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.905+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.905+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.06Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.905+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.908+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.908+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.909+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.04.07.798379' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.04.07.798379\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.932+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.936+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.936+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:07.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 86\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.04.06.723491.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:04:06Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:04:06.795+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 58,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.853+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.853+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.853+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.04Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.853+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.856+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.856+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.04.06.723491' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.04.06.723491\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.857+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.861+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.861+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:06.862+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 67\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.04.05.138465.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:04:05Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:04:05.202+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.363+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 161,\n                            \"cumulative\": 161\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.363+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 161\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.363+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 161\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.363+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.02Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 161\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.363+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 161\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.365+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 163\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.04.05.138465' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.04.05.138465\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.366+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 164\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.370+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 168\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.370+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 168\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:04:05.371+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 169\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.58.908436.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:58Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:58.975+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.034+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.034+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.06Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.034+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.58.908436' (59 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.58.908436\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.038+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete report_id 5\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.045+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"NOTICE:  table \\\"pgp_5\\\" does not exist, skipping\",\n                        \"metadata\": {\n                            \"own\": 11,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.056+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:59.057+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 82\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.57.263265.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:57Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:57.319+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.375+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.375+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.375+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.08Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.375+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.377+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.378+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.378+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.57.263265' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.401+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.57.263265\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.401+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.401+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.401+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.401+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.402+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.402+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.402+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.402+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 5\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.402+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.403+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.408+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:57.409+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 90\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.56.299810.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:56Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:56.323+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.382+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.383+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.383+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.06Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.383+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.56.299810' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.56.299810\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.388+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.390+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.390+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.391+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 68\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.56.115558.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:56Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:56.167+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.233+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 66,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.234+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.234+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.05Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.234+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.237+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.56.115558' (242 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 71\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.56.115558\",\n                        \"metadata\": {\n                            \"own\": 22,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - envisioneer distributed functionalities'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.260+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.262+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 95\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.262+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 95\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.265+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - envisioneer distributed functionalities'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.267+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 100\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:56.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 100\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.55.004460.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:55Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:55.024+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.077+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 53,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.077+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.077+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.077+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.10Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.077+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.55.004460' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.55.004460\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.080+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.082+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.086+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:55.087+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 63\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.54.898453.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:54Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:54.920+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.972+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 52,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.972+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.972+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.972+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.09Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.972+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.974+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.54.898453' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.54.898453\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.975+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.977+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.981+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.981+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.54.761916.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:54Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:54.808+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.861+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 53,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.861+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.861+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.861+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.10Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.861+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.864+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.54.761916' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.54.761916\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.867+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.871+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:54.871+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.03.06.768876.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:03:06Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:03:06.833+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 82,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.915+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.915+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.915+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.07Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.915+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.918+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.03.06.768876' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.03.06.768876\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.919+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.922+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.922+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:03:06.923+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 90\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T14.02.59.244910.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T14:02:59Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T14:02:59.293+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.350+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.350+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.350+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.13Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.350+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.353+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.355+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.355+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T14.02.59.244910' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T14.02.59.244910\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.379+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.383+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.383+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T14:02:59.384+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 91\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.24.475860.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:24Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:24.557+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 173,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.730+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.730+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.730+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.86Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.730+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 173\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.733+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 176\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.24.475860' (63 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.24.475860\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.734+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete service with ID of '67'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 177\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.754+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 service(s)\",\n                        \"metadata\": {\n                            \"own\": 20,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.754+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 197\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:24.755+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 198\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.21.990742.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:22Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": null,\n                        \"level\": 7,\n                        \"message\": \"t,2022-07-21T13:49:22.015+00:00,7,------ Invocation -----\",\n                        \"metadata\": []\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": []\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.078+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.079+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.78Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.079+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.081+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.21.990742' (337 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.21.990742\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.092+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.095+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 7 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.097+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 6 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.104+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.104+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.104+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.105+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.105+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 32,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.137+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.147+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.148+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Error preparing usage query while creating usage cache: no such column: unique_key\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.151+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.151+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.151+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.152+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.152+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 43,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.195+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.196+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.206+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.206+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.206+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Error preparing usage query while creating usage cache: no such column: unique_key\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.210+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.210+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.248+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 38,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.248+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.248+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.249+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.257+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.257+00:00\",\n                        \"level\": 5,\n                        \"message\": \"Error preparing usage query while creating usage cache: no such column: unique_key\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.258+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.258+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.258+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.258+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.258+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.265+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.265+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.322+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.353+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.354+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.358+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.390+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 32,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.478+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 88,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.481+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 40 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.549+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 68,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.549+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.549+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.549+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 2 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.554+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 7 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.555+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 6 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.557+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.557+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - 296' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.557+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.557+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.591+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 34,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.591+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.591+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.591+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.600+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.600+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.603+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.603+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.603+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.630+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.631+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 20 usage cache entries for report 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.633+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.652+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 19,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.652+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - 296' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.652+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.652+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.690+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 38,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.690+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.690+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.690+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.699+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.699+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.702+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.702+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.702+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 25,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.727+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 20 usage cache entries for report 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.728+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.744+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 16,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.744+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - 296' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.744+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.744+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.783+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 39,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.783+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.783+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.783+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.791+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.791+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.792+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.792+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.793+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.793+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.793+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.793+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.793+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.793+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.793+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.794+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.795+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.795+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.795+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.795+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.820+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 25,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.820+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 20 usage cache entries for report 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.821+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.835+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 14,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.836+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.836+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.836+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.836+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.839+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.840+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.845+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.899+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 54,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.899+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.912+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 13,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.913+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.916+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:22.999+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.002+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 11 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.073+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 71,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.073+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.077+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 0 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.081+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 7 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.081+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 6 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - brand end-to-end networks' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 34,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.117+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.126+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.126+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.128+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.129+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.129+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.153+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825: wrote 20 usage cache entries for report 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.154+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.170+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 16,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.170+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - brand end-to-end networks' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.171+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.171+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 52,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.223+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.224+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.234+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.238+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 28,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.266+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826: wrote 20 usage cache entries for report 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.267+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be fully prepared\",\n                        \"metadata\": {\n                            \"own\": 17,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.284+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'Test report - brand end-to-end networks' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.285+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Attached daily RDF to shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.285+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Creating interim rates lookup data in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Created interim rates lookup data\",\n                        \"metadata\": {\n                            \"own\": 39,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Detached daily RDF from shadow database\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updating flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for flattened rates cache\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for flattened cached rates update\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.334+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated flattened rates cache in daily RDF\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.334+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.334+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.336+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.336+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.336+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.336+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.336+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.336+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.337+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.337+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.337+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.337+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.337+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.337+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 3,\n                        \"message\": \"Error preparing instance_col resolution query: no such column: hostname\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed a total of 20 usage records\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Usage cache hash table completed (0 collisions and 20 clean inserts)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.338+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Started transaction for report cache update\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.364+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for report cache\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.364+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827: wrote 20 usage cache entries for report 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.365+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Updated preparation timestamp in sync table\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.380+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.381+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.381+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 4\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.381+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.381+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.385+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.386+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.387+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.446+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.461+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 15,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.474+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_4\",\n                        \"metadata\": {\n                            \"own\": 13,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.475+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.505+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 30,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.568+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 63,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.571+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 11 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.668+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 97,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.668+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": \"-\"\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:23.669+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": \"-\"\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.21.817497.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:21Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:21.873+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 59,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.932+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.932+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.932+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.77Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.932+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.934+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.21.817497' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.21.817497\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.935+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.939+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.939+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:21.940+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 67\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.20.829647.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:20Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:20.880+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.933+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 53,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.933+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.933+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.933+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.79Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.934+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.20.829647' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.20.829647\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.937+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.941+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.942+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.19.911096.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:19.985+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 62,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.047+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.047+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.047+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.80Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.047+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.049+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.050+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.19.911096' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 65\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.19.911096\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.074+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.079+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 94\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:20.079+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 94\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.19.019327.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:19Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:19.088+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 60,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.148+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.149+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.149+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.74Gb (30%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.149+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.151+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.151+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 63\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.19.019327' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.19.019327\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.152+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 64\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.156+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 7 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.156+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:19.157+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 69\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.17.432003.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:17Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:17.505+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.562+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.562+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.562+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.562+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.77Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.562+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.565+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.565+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.17.432003' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.17.432003\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.566+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.571+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.571+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:17.571+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 66\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.09.364291.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:09Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:09.404+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 58,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.462+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.462+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.462+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.85Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.462+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.465+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.465+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.465+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.09.364291' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.09.364291\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.489+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.491+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.492+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.492+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.493+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 89\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.09.068911.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:09Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:09.251+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.319+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 68,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.319+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.319+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.319+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.86Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.320+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 69\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.09.068911' (228 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.09.068911\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.323+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 72\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.324+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.324+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.324+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.324+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 73\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.325+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 74\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.326+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 75\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.329+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - brand end-to-end networks'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 78\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.331+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:09.331+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.08.058194.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:08Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:08.079+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.132+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 53,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.132+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.132+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.132+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.84Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.132+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.135+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.135+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.135+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.08.058194' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.08.058194\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.136+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.137+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.140+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.141+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.49.07.892335.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:49:07Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:49:07.953+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.009+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.009+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.009+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.009+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 4.84Gb (31%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.009+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.011+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.012+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.012+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.49.07.892335' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.49.07.892335\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.036+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.038+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.042+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 89\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:49:08.043+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 90\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.47.02.559618.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:47:02Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:47:02.628+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.683+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.683+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.683+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.683+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.03Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.683+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.685+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.47.02.559618' (104 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.47.02.559618\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.686+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'Test account - 310'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.695+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:02.695+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 67\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.47.00.952978.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:47:01Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:47:01.018+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.075+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.075+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.075+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.06Gb (32%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.075+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.077+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.47.00.952978' (95 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.47.00.952978\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to DELETE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.078+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set account_id to 56 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.085+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Cached 1 child accounts\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": 67\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.094+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 accounts\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 76\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.099+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:47:01.100+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 82\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.58.750094.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:58Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:58.804+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.862+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 58,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.862+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.862+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.862+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.12Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.862+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.865+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 61\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.866+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.58.750094' (100 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 62\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.58.750094\",\n                        \"metadata\": {\n                            \"own\": 21,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.887+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'My new account'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.895+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 8,\n                            \"cumulative\": 91\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:58.896+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 92\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.44.790792.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:44Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:44.841+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 97,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 97\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.939+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.11Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.939+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 98\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.942+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 101\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.943+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.44.790792' (90 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 102\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.44.790792\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Tue Aug  1 00:00:00 2017 (falls within 20170801)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Tue Aug  1 23:59:59 2017 (falls within 20170801)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for range 20170801 - 20170801\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 126\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.972+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Rounded provided date range to get 20170801 - 20170831 (31 days)\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 131\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.981+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processing subscription 'modified_test' ...\",\n                        \"metadata\": {\n                            \"own\": 9,\n                            \"cumulative\": 140\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.983+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 142\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.984+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 143\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:44.984+00:00\",\n                        \"level\": 4,\n                        \"message\": \"Error preparing report cache query: no such table: cache_3\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 143\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 72,\n                            \"cumulative\": 215\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.056+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 215\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": 241\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.083+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_3\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 242\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.089+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170801 to 20170831\",\n                        \"metadata\": {\n                            \"own\": 6,\n                            \"cumulative\": 248\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.116+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": 275\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.173+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 57,\n                            \"cumulative\": 332\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.175+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 1 instance-level records and 1 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 334\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.241+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 66,\n                            \"cumulative\": 400\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.241+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 400\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:45.241+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 400\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.41.444403.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:41Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:41.506+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.561+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 55,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.561+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.561+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.561+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.13Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.561+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.563+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.563+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.564+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.41.444403' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.41.444403\",\n                        \"metadata\": {\n                            \"own\": 23,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.587+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 81\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.591+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.591+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 85\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:41.592+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 86\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.40.598894.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:40Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:40.667+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.720+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 53,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.720+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.720+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.720+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.13Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.720+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.722+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.723+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.723+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.40.598894' (104 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.40.598894\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_manageAccounts'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set 'action' to CREATE on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 3 on line 2\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.747+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set level 1 key to 'Test account - 194'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 80\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.757+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 90\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:40.757+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 90\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.39.869287.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:39Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:39.898+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 54,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.952+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.15Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.952+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.955+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.955+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.955+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.39.869287' (73 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.39.869287\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getDataStatus'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 0\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.956+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Status will be returned for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.957+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Ensured rdf_summary table in global database has no stale entries (ref: EXVT-1814)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.958+00:00\",\n                        \"level\": 3,\n                        \"message\": \"No report found with an id of 0\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.958+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.958+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 60\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.39.635471.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:39Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:39.682+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 54,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.736+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.737+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.737+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.12Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.737+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.739+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.739+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 57\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.740+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.39.635471' (203 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 58\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.39.635471\",\n                        \"metadata\": {\n                            \"own\": 28,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_defineReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set name of report definition to 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report definition will reference data in 'test.usage'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.768+00:00\",\n                        \"level\": 3,\n                        \"message\": \"The number of meta_id arguments does not match the number of key_col arguments (unspecified meta_ids will default to 'none')\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 86\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.770+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified RDF 'test.usage' (seen from 20170825 to 20170827)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.770+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Verified metadata IDs\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.774+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Successfully created report definition 'Test report - 296'\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 92\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.775+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 93\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:39.789+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 14,\n                            \"cumulative\": 107\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.37.930950.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:37Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:37.978+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.034+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.034+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.034+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.13Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.034+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.037+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.37.930950' (63 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.37.930950\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_deleteServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.061+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will delete service with ID of '65'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.081+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Deleted 1 service(s)\",\n                        \"metadata\": {\n                            \"own\": 20,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.081+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 103\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:38.082+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 104\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.36.818948.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:36Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:36.885+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 53,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.938+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.15Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 53\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.36.818948' (131 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.36.818948\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_prepareReport'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.941+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be prepared for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.951+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 46 accounts to shadow db\",\n                        \"metadata\": {\n                            \"own\": 10,\n                            \"cumulative\": 66\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.953+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 6 service definitions to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 68\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.955+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Copied 5 rate revisions for 'test.usage' to shadow db\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 70\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 7,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170825 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.962+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170825\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 77\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.964+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.964+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170826 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.964+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170826\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Some services were changed after preparation\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"20170827 has to be partially prepared\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.967+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Preparing report 'test' for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 82\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.968+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed shadow database\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.968+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'p_getPrices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.968+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set report_id to 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.968+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Report will be executed for all available dates\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.968+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Will include breakdown data in the report results\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.972+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170825\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.973+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170826\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.973+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Processed 20 prepared records for 20170827\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 88\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.021+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened PSQL Exivity database\",\n                        \"metadata\": {\n                            \"own\": 48,\n                            \"cumulative\": 136\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.021+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generating current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 136\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Generated current adjustments lookup\",\n                        \"metadata\": {\n                            \"own\": 27,\n                            \"cumulative\": 163\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.048+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Output table: pgp_1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 163\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.051+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Removed any existing report records in database for the reporting range 20170825 to 20170827\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 166\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.077+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered instance-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 26,\n                            \"cumulative\": 192\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.139+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Non-tiered service-level results written to database\",\n                        \"metadata\": {\n                            \"own\": 62,\n                            \"cumulative\": 254\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.141+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Committed transaction for p_getPrices output generation (wrote 40 instance-level records and 40 service-level records)\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 256\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.208+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Collisions handled - instance:0 service:0 THT:0\",\n                        \"metadata\": {\n                            \"own\": 67,\n                            \"cumulative\": 323\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.208+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 323\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:37.209+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 324\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.35.867391.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:35Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:35.938+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.994+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 56,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.994+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.994+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.994+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.12Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.994+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 56\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 3,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.997+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.35.867391' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 59\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.35.867391\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.021+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 83\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.025+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 4,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.025+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 87\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:36.026+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 88\n                        }\n                    }\n                ]\n            }\n        },\n        {\n            \"type\": \"logfile\",\n            \"id\": \"PROXIMITY_2022-07-21T13.46.35.019683.log\",\n            \"attributes\": {\n                \"created\": \"2022-07-21T13:46:35Z\",\n                \"metadata\": {\n                    \"endsWell\": false\n                },\n                \"lines\": [\n                    {\n                        \"date\": \"2022-07-21T13:46:35.086+00:00\",\n                        \"level\": 7,\n                        \"message\": \"------ Invocation -----\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 0\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.138+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened connection to PSQL database\",\n                        \"metadata\": {\n                            \"own\": 52,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.138+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Opened global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.138+00:00\",\n                        \"level\": 7,\n                        \"message\": \"CPU type: x64 (Intel or ARM) | NUMA nodes: 1 | Physical CPUs: 1 | CPU cores: 4 | Logical CPUs: 8\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.138+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Installed RAM: 16.00Gb | RAM available to OS: 15.86Gb | RAM available to Edify: 5.12Gb (33%)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.138+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Basedir: c:\\\\exivity\\\\home\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 52\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.140+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Set username for auditing to 'admin'\",\n                        \"metadata\": {\n                            \"own\": 2,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.140+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialised auditing\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 54\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.141+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Read file 'system/config/edify/PROXIMITY_2022-07-21T13.46.35.019683' (67 bytes)\",\n                        \"metadata\": {\n                            \"own\": 1,\n                            \"cumulative\": 55\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Reportfile: PROXIMITY_2022-07-21T13.46.35.019683\",\n                        \"metadata\": {\n                            \"own\": 24,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Start time: Thu Jul 21 00:00:00 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 2,\n                        \"message\": \"End time: Thu Jul 21 23:59:59 2022 (falls within 20220721)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Initialisation completed\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Build time: Jun  2 2022 14:30:23\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting directive 'd_setOptions'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Set loglevel to 'INFO' on line 1\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.165+00:00\",\n                        \"level\": 7,\n                        \"message\": \"==> Invoking reporting function 'i_getServices'\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 79\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.170+00:00\",\n                        \"level\": 2,\n                        \"message\": \"i_getServices result contains 6 records\",\n                        \"metadata\": {\n                            \"own\": 5,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.170+00:00\",\n                        \"level\": 7,\n                        \"message\": \"Finished\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    },\n                    {\n                        \"date\": \"2022-07-21T13:46:35.170+00:00\",\n                        \"level\": 2,\n                        \"message\": \"Closed global database (PSQL)\",\n                        \"metadata\": {\n                            \"own\": 0,\n                            \"cumulative\": 84\n                        }\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"c3f6732d-6ff0-4311-a481-68459cb9328f"}],"id":"313a1e46-93a6-4969-9035-58e814c3c171","description":"<p>Exivity documentation: <a href=\"https://docs.exivity.com/troubleshooting/logs\">https://docs.exivity.com/troubleshooting/logs</a></p>\n","event":[{"listen":"prerequest","script":{"id":"554f307a-a334-451f-933e-b56eaaf9f78c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8628d104-ff0f-4447-8408-2e25a7880be3","type":"text/javascript","exec":[""]}}],"_postman_id":"313a1e46-93a6-4969-9035-58e814c3c171","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"/licence","item":[{"name":"Retrieve current licence","event":[{"listen":"test","script":{"id":"7c6742a6-e5fd-4bf6-8bb4-afabc86fd858","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","    pm.expect(response.data.type).to.eql('licence');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.status).to.be.a('string');","    pm.expect(response.data.attributes.expiresAfter).to.be.a('string');","});",""],"type":"text/javascript"}}],"id":"ece59e75-952c-4629-8b91-66d5e48d82e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/licence","urlObject":{"path":["v2","licence"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e6230104-38a3-4cbf-aa84-8a56099b9e7e","name":"Retrieve current licence","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/licence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 11 Oct 2022 08:17:25 GMT"},{"key":"Date","value":"Tue, 11 Oct 2022 08:17:25 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xef4683655c2a2407f8ff100c7ca4e441"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xef4683655c2a2407f8ff100c7ca4e441"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-WXfBZm79sI3EuWzAWnOkww163LIbT1X6';style-src 'self' 'nonce-WXfBZm79sI3EuWzAWnOkww163LIbT1X6';font-src 'self' data:"},{"key":"Request-Id","value":"9b44b5e3-e7a2-4f98-9e2c-2c795b3ac522"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"licence\",\n        \"id\": \"83b44524e07b8cb94f110010dd15fa82b352d1fa\",\n        \"attributes\": {\n            \"status\": \"valid\",\n            \"expiresAfter\": \"2027-07-01\"\n        }\n    }\n}"}],"_postman_id":"ece59e75-952c-4629-8b91-66d5e48d82e2"},{"name":"Add new licence","event":[{"listen":"test","script":{"id":"523ab58c-9d44-4d77-98c2-29c337fb1c35","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","    pm.expect(response.data.type).to.eql('licence');","    pm.expect(response.data.id).to.be.a('string');","});","","pm.test(\"Response contains correct attributes\", function () {","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes.status).to.be.a('string');","    pm.expect(response.data.attributes.expiresAfter).to.be.a('string');","});",""],"type":"text/javascript"}}],"id":"d74d55b6-4e4c-474b-adef-ec36e782a7a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"licence\",\n        \"id\": \"83b44524e07b8cb94f110010dd15fa82b352d1fa\",\n        \"attributes\": {\n            \"licence\": \"{{licence}}\"\n        }\n    }\n}"},"url":"{{base_url}}/v2/licence","description":"<p>Adding a new licence will replace current licence.</p>\n","urlObject":{"path":["v2","licence"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"e34ed073-f6f1-429b-9420-7b006385655d","name":"Add new licence","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"licence\",\n        \"id\": \"83b44524e07b8cb94f110010dd15fa82b352d1fa\",\n        \"attributes\": {\n            \"licence\": \"123abc...\"\n        }\n    }\n}"},"url":"{{base_url}}/v2/licence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 11 Oct 2022 08:19:32 GMT"},{"key":"Date","value":"Tue, 11 Oct 2022 08:19:32 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"Xf554696a16cbf290bf623dd4db89710c"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"Xf554696a16cbf290bf623dd4db89710c"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-vVcXuyr108zUiCvf4jDhZQfdXAA4eRC8';style-src 'self' 'nonce-vVcXuyr108zUiCvf4jDhZQfdXAA4eRC8';font-src 'self' data:"},{"key":"Request-Id","value":"ab679167-947d-4c17-8ce2-db4167f3e9c9"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"licence\",\n        \"id\": \"4062176ea1471472332ab3afbc2d5dc58af621b7\",\n        \"attributes\": {\n            \"status\": \"valid\",\n            \"expiresAfter\": \"2023-01-31\"\n        }\n    }\n}"}],"_postman_id":"d74d55b6-4e4c-474b-adef-ec36e782a7a9"}],"id":"9d4762bb-3baa-447d-8250-242f048cbc79","description":"<p>Atomic support:❌</p>\n<p>In order to have a fully functional solution, you need a valid license.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/how%20to%20guides/how%20to%20update%20your%20license/\">https://docs.exivity.com/licence</a></p>\n<h4 id=\"the-licence-object\">The Licence Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutabilty</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td><em>enum</em> (<code>valid</code>, <code>expired</code>, <code>invalid</code>, <code>pending</code>, <code>notfound</code>, <code>error</code>)</td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>expiresAfter</td>\n<td><em>string</em></td>\n<td>👁 read-only</td>\n<td>Date, format: Y-m-d</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"1eb70730-c878-4efd-b60d-10972bb5adf2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5592fe90-0236-4200-a448-983ba62ce146","type":"text/javascript","exec":[""]}}],"_postman_id":"9d4762bb-3baa-447d-8250-242f048cbc79","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"/system","item":[{"name":"/cache","item":[{"name":"Get cache information","event":[{"listen":"test","script":{"id":"66c48d75-9404-4b54-8689-05c348b2a670","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","    pm.expect(response.data[0].id).equals(\"proximity\");","    pm.expect(response.data[1].id).equals(\"edify\");","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9e6ff5d4-ab88-400e-abd1-8a4f4e31b5ce","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"bacba8f8-0e66-4eed-9b07-203cfdae9bfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/cache","urlObject":{"path":["v2","cache"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"aba471a9-ee7e-41f8-b08a-4370c2d474f1","name":"Get cache information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","disabled":false}],"url":"{{base_url}}/v1/system/cache"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":""},{"key":"connection","value":"close","name":"connection","description":""},{"key":"content-type","value":"application/json","name":"content-type","description":""},{"key":"date","value":"Wed, 14 Feb 2018 10:30:01 +0000, Wed, 14 Feb 2018 10:30:01 GMT","name":"date","description":""},{"key":"host","value":"localhost:8002","name":"host","description":""},{"key":"phpdebugbar-id","value":"df70786eedbca0f8fa5fae6872d8321c","name":"phpdebugbar-id","description":""},{"key":"x-powered-by","value":"PHP/7.1.4","name":"x-powered-by","description":""}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"proximity\":{\"size\":\"(not running)\"},\"edify\":{\"size\":\"(unknown)\"}}}"}],"_postman_id":"bacba8f8-0e66-4eed-9b07-203cfdae9bfe"},{"name":"Delete cache","event":[{"listen":"test","script":{"id":"a0cf0623-b37f-4e92-99fe-b5dbb0448edd","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});"],"type":"text/javascript"}}],"id":"116d8ad6-4888-4113-a93f-85cb63949171","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/cache?component","urlObject":{"path":["v2","cache"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Optionally specify a component to delete the caches for. Available options: <code>proximity</code>, <code>edify</code>.</p>\n","type":"text/plain"},"key":"component","value":null}],"variable":[]}},"response":[{"id":"6b41fa32-565b-4965-9cc7-6d4167f69bf8","name":"Delete cache","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v1/system/cache?component","host":["{{base_url}}"],"path":["v1","system","cache"],"query":[{"key":"component","value":null,"description":"Optionally specify a component to delete the caches for. Available options: `proximity`, `edify`."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":""},{"key":"connection","value":"close","name":"connection","description":""},{"key":"content-type","value":"application/json","name":"content-type","description":""},{"key":"date","value":"Wed, 14 Feb 2018 10:35:02 +0000, Wed, 14 Feb 2018 10:35:02 GMT","name":"date","description":""},{"key":"host","value":"localhost:8002","name":"host","description":""},{"key":"x-powered-by","value":"PHP/7.1.4","name":"x-powered-by","description":""}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"116d8ad6-4888-4113-a93f-85cb63949171"}],"id":"470ce585-c3b6-42a1-b79b-29576bbe388d","event":[{"listen":"prerequest","script":{"id":"0104debd-0491-45ef-ac89-f9889f2bf07a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"046200c9-ffbf-4a27-bbe1-1bae24a0d245","type":"text/javascript","exec":[""]}}],"_postman_id":"470ce585-c3b6-42a1-b79b-29576bbe388d","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"Get system overview","event":[{"listen":"test","script":{"id":"36d54f88-3133-49e7-a560-cdce8d9cb57d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","    pm.expect(response).to.have.keys([","        \"version\",","        \"flags\"","    ]);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"622f6f49-470b-40aa-917b-fdc11b0d41fb","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"d60a4d2d-e7eb-4c46-9f9e-98172d5189b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/system","description":"<p>⚠️ This endpoint is deprecated and may be removed in future versions of Exivity. Use <code>/system/version</code> and <code>/system/flags</code> instead.</p>\n","urlObject":{"path":["v2","system"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"d4895084-fc30-4fa1-bf8a-4c4f282ffe13","name":"Get version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v1/system/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"connection","value":"close","name":"connection","description":"Options that are desired for the connection"},{"key":"content-type","value":"application/json","name":"content-type","description":"The mime type of this content"},{"key":"date","value":"Wed, 14 Feb 2018 10:41:34 +0000, Wed, 14 Feb 2018 10:41:34 GMT","name":"date","description":"The date and time that the message was sent"},{"key":"host","value":"localhost:8002","name":"host","description":"Custom header"},{"key":"phpdebugbar-id","value":"761895ecc35993dc557ff3149dc64d58","name":"phpdebugbar-id","description":"Custom header"},{"key":"x-powered-by","value":"PHP/7.1.4","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"version\": \"1.2.0\",\r\n        \"components\": {\r\n            \"exivityd\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"89747002f3daa264fd58782f820854414c2b71f9\"\r\n            },\r\n            \"db\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"2c25fbe3b49608b745c5337787c8845ed8f9504a\"\r\n            },\r\n            \"use\": {\r\n                \"ref\": \"v1.2.0\",\r\n                \"hash\": \"7e937cbc5b8ccb1557c0108af4c48aad8735fe53\"\r\n            },\r\n            \"transcript\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"f9a9db7c57896cefd2a6a4d96aacbe294d67e29f\"\r\n            },\r\n            \"edify\": {\r\n                \"ref\": \"v1.0.2\",\r\n                \"hash\": \"34017a9bebe5b42290534d0c5ab6988759eb25f6\"\r\n            },\r\n            \"glass\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"ea3b0d344ddd80227f40a00baf8b8af5691a2e8d\"\r\n            },\r\n            \"proximity\": {\r\n                \"ref\": \"v1.0.3\",\r\n                \"hash\": \"72ae7b190714f69918575d5c1baa212db962fea8\",\r\n                \"api\": \"v1\"\r\n            },\r\n            \"eternity\": {\r\n                \"ref\": \"v1.0.1\",\r\n                \"hash\": \"6d0ff2b38d15d9832297bc16c807320e035ddb96\"\r\n            }\r\n        }\r\n    }\r\n}"}],"_postman_id":"d60a4d2d-e7eb-4c46-9f9e-98172d5189b0"},{"name":"Get system overview (unauthenticated)","event":[{"listen":"test","script":{"id":"12167c77-6027-40e0-b308-99a90e335a97","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response).to.be.an('object');","    pm.expect(response).to.have.keys([","        \"version\",","        \"flags\"","    ]);","});"],"type":"text/javascript"}}],"id":"55143af6-6fdf-4cd7-89a9-d115e1b79e6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/system","description":"<p>⚠️ This endpoint is deprecated and may be removed in future versions of Exivity. Use <code>/system/version</code> and <code>/system/flags</code> instead.</p>\n","urlObject":{"path":["v2","system"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"b3e96944-82fc-421b-88cb-1197f9266e07","name":"Get version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v1/system/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"connection","value":"close","name":"connection","description":"Options that are desired for the connection"},{"key":"content-type","value":"application/json","name":"content-type","description":"The mime type of this content"},{"key":"date","value":"Wed, 14 Feb 2018 10:41:34 +0000, Wed, 14 Feb 2018 10:41:34 GMT","name":"date","description":"The date and time that the message was sent"},{"key":"host","value":"localhost:8002","name":"host","description":"Custom header"},{"key":"phpdebugbar-id","value":"761895ecc35993dc557ff3149dc64d58","name":"phpdebugbar-id","description":"Custom header"},{"key":"x-powered-by","value":"PHP/7.1.4","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"version\": \"1.2.0\",\r\n        \"components\": {\r\n            \"exivityd\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"89747002f3daa264fd58782f820854414c2b71f9\"\r\n            },\r\n            \"db\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"2c25fbe3b49608b745c5337787c8845ed8f9504a\"\r\n            },\r\n            \"use\": {\r\n                \"ref\": \"v1.2.0\",\r\n                \"hash\": \"7e937cbc5b8ccb1557c0108af4c48aad8735fe53\"\r\n            },\r\n            \"transcript\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"f9a9db7c57896cefd2a6a4d96aacbe294d67e29f\"\r\n            },\r\n            \"edify\": {\r\n                \"ref\": \"v1.0.2\",\r\n                \"hash\": \"34017a9bebe5b42290534d0c5ab6988759eb25f6\"\r\n            },\r\n            \"glass\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"ea3b0d344ddd80227f40a00baf8b8af5691a2e8d\"\r\n            },\r\n            \"proximity\": {\r\n                \"ref\": \"v1.0.3\",\r\n                \"hash\": \"72ae7b190714f69918575d5c1baa212db962fea8\",\r\n                \"api\": \"v1\"\r\n            },\r\n            \"eternity\": {\r\n                \"ref\": \"v1.0.1\",\r\n                \"hash\": \"6d0ff2b38d15d9832297bc16c807320e035ddb96\"\r\n            }\r\n        }\r\n    }\r\n}"}],"_postman_id":"55143af6-6fdf-4cd7-89a9-d115e1b79e6b"},{"name":"Get version information","event":[{"listen":"test","script":{"id":"23dcd4eb-a459-44ab-965e-df697c1522a1","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data).to.have.keys([","        \"version\",","        \"components\"","    ]);","});"],"type":"text/javascript"}}],"id":"bf7ba05e-9de1-499a-a048-cfa9e44d3d96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/system/version","description":"<p>Lists the installed components in the Exivity system and their version information.</p>\n","urlObject":{"path":["v2","system","version"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"804a7645-6952-4ec9-a2fd-43b6dd6e5131","name":"Get version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/system/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 24 May 2022 15:14:18 GMT"},{"key":"Date","value":"Tue, 24 May 2022 15:14:18 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X62d7d0e8584bf661ba0a123527bfc0a0"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X62d7d0e8584bf661ba0a123527bfc0a0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-3b7DgH3Y3KMohdqArKCadQDg9wIOGqgO';style-src 'self' 'nonce-3b7DgH3Y3KMohdqArKCadQDg9wIOGqgO';font-src 'self' data:"},{"key":"Request-Id","value":"842f59b0-6330-4c40-b24c-e841c9a9ef90"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"version\": \"3.6.7\",\n        \"components\": {\n            \"exivityd\": {\n                \"ref\": \"v1.0.0\",\n                \"hash\": \"89747002f3daa264fd58782f820854414c2b71f9\"\n            },\n            \"db\": {\n                \"ref\": \"v3.3.1\",\n                \"hash\": \"7fbdfe1b51cd48da68e2b2a9d870dbf2fa9e83d6\",\n                \"schema_version\": 20220211,\n                \"data_migrations\": [\n                    \"WorkflowStepAttributes\",\n                    \"TierBreakdown\"\n                ]\n            },\n            \"use\": {\n                \"ref\": \"v3.1.6\",\n                \"hash\": \"1e2df979ff00fc39823d559ca5b673f12521c9cf\"\n            },\n            \"transcript\": {\n                \"ref\": \"v3.3.6\",\n                \"hash\": \"06cdc47f2b8032780bb50e413b4020c216fb9d06\"\n            },\n            \"edify\": {\n                \"ref\": \"v3.3.3\",\n                \"hash\": \"3df5b4e51876e35cbad5a5911ba5b09aa96a6c35\"\n            },\n            \"glass\": {\n                \"ref\": \"v2.4.7\",\n                \"hash\": \"e6423e03c7869db6991f78579d87f1f41437ec15\"\n            },\n            \"proximity\": {\n                \"ref\": \"v2.13.1\",\n                \"hash\": \"febd77432caff702daa35a018d09d97cadf3eda9\",\n                \"api\": \"v1\"\n            },\n            \"pigeon\": {\n                \"ref\": \"v2.1.3\",\n                \"hash\": \"768b5d08f1eb81dcd012f6c7a218dde8777725ac\"\n            },\n            \"horizon\": {\n                \"ref\": \"v2.1.2\",\n                \"hash\": \"a69ec0684bd038a845cb96552860a94dd642bfc7\"\n            },\n            \"merlin\": {\n                \"ref\": \"v1.1.3\",\n                \"hash\": \"6496074fef91934fae1318f65e56984c63f678ea\"\n            },\n            \"griffon\": {\n                \"ref\": \"v1.0.3\",\n                \"hash\": \"1361ec402bbe50af198ad4a03a40cb5e1971855b\"\n            },\n            \"bunny\": {\n                \"ref\": \"v1.0.1\",\n                \"hash\": \"057579f0def9e96bcc995992d3ffcd1b1b1c5b04\"\n            },\n            \"chronos\": {\n                \"ref\": \"v1.0.4\",\n                \"hash\": \"e789a1c6873346483f2947633191137d750d21da\"\n            }\n        }\n    }\n}"}],"_postman_id":"bf7ba05e-9de1-499a-a048-cfa9e44d3d96"},{"name":"Get version information (unauthenticated)","event":[{"listen":"test","script":{"id":"2cfc8d10-92d8-4b91-9740-d4cb5ca936a4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data).to.have.keys([","        \"version\"","    ]);","});"],"type":"text/javascript"}}],"id":"f61a3dda-8e33-4820-97ca-3e6bd73f8370","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/system/version","urlObject":{"path":["v2","system","version"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"3ec8d691-cd9b-4367-8034-d8d44464fe18","name":"Get version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v1/system/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"connection","value":"close","name":"connection","description":"Options that are desired for the connection"},{"key":"content-type","value":"application/json","name":"content-type","description":"The mime type of this content"},{"key":"date","value":"Wed, 14 Feb 2018 10:41:34 +0000, Wed, 14 Feb 2018 10:41:34 GMT","name":"date","description":"The date and time that the message was sent"},{"key":"host","value":"localhost:8002","name":"host","description":"Custom header"},{"key":"phpdebugbar-id","value":"761895ecc35993dc557ff3149dc64d58","name":"phpdebugbar-id","description":"Custom header"},{"key":"x-powered-by","value":"PHP/7.1.4","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"version\": \"1.2.0\",\r\n        \"components\": {\r\n            \"exivityd\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"89747002f3daa264fd58782f820854414c2b71f9\"\r\n            },\r\n            \"db\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"2c25fbe3b49608b745c5337787c8845ed8f9504a\"\r\n            },\r\n            \"use\": {\r\n                \"ref\": \"v1.2.0\",\r\n                \"hash\": \"7e937cbc5b8ccb1557c0108af4c48aad8735fe53\"\r\n            },\r\n            \"transcript\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"f9a9db7c57896cefd2a6a4d96aacbe294d67e29f\"\r\n            },\r\n            \"edify\": {\r\n                \"ref\": \"v1.0.2\",\r\n                \"hash\": \"34017a9bebe5b42290534d0c5ab6988759eb25f6\"\r\n            },\r\n            \"glass\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"ea3b0d344ddd80227f40a00baf8b8af5691a2e8d\"\r\n            },\r\n            \"proximity\": {\r\n                \"ref\": \"v1.0.3\",\r\n                \"hash\": \"72ae7b190714f69918575d5c1baa212db962fea8\",\r\n                \"api\": \"v1\"\r\n            },\r\n            \"eternity\": {\r\n                \"ref\": \"v1.0.1\",\r\n                \"hash\": \"6d0ff2b38d15d9832297bc16c807320e035ddb96\"\r\n            }\r\n        }\r\n    }\r\n}"}],"_postman_id":"f61a3dda-8e33-4820-97ca-3e6bd73f8370"},{"name":"Get available flags","event":[{"listen":"test","script":{"id":"60fd14df-5b90-41aa-82f5-c0d09eb6c1cc","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data).to.have.keys([","        \"SUPPORTS_PDF_EXPORT\",","        \"SUPPORTS_SENDING_MAIL\"","    ]);","});"],"type":"text/javascript"}}],"id":"9c434e84-4132-4930-8674-6d7a73475276","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/system/flags","urlObject":{"path":["v2","system","flags"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"87ef29c4-7d40-479d-a60e-9bc28b77a4bb","name":"Get version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v1/system/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"cache-control","value":"no-cache, private","name":"cache-control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"connection","value":"close","name":"connection","description":"Options that are desired for the connection"},{"key":"content-type","value":"application/json","name":"content-type","description":"The mime type of this content"},{"key":"date","value":"Wed, 14 Feb 2018 10:41:34 +0000, Wed, 14 Feb 2018 10:41:34 GMT","name":"date","description":"The date and time that the message was sent"},{"key":"host","value":"localhost:8002","name":"host","description":"Custom header"},{"key":"phpdebugbar-id","value":"761895ecc35993dc557ff3149dc64d58","name":"phpdebugbar-id","description":"Custom header"},{"key":"x-powered-by","value":"PHP/7.1.4","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"version\": \"1.2.0\",\r\n        \"components\": {\r\n            \"exivityd\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"89747002f3daa264fd58782f820854414c2b71f9\"\r\n            },\r\n            \"db\": {\r\n                \"ref\": \"v1.0.0\",\r\n                \"hash\": \"2c25fbe3b49608b745c5337787c8845ed8f9504a\"\r\n            },\r\n            \"use\": {\r\n                \"ref\": \"v1.2.0\",\r\n                \"hash\": \"7e937cbc5b8ccb1557c0108af4c48aad8735fe53\"\r\n            },\r\n            \"transcript\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"f9a9db7c57896cefd2a6a4d96aacbe294d67e29f\"\r\n            },\r\n            \"edify\": {\r\n                \"ref\": \"v1.0.2\",\r\n                \"hash\": \"34017a9bebe5b42290534d0c5ab6988759eb25f6\"\r\n            },\r\n            \"glass\": {\r\n                \"ref\": \"v1.1.0\",\r\n                \"hash\": \"ea3b0d344ddd80227f40a00baf8b8af5691a2e8d\"\r\n            },\r\n            \"proximity\": {\r\n                \"ref\": \"v1.0.3\",\r\n                \"hash\": \"72ae7b190714f69918575d5c1baa212db962fea8\",\r\n                \"api\": \"v1\"\r\n            },\r\n            \"eternity\": {\r\n                \"ref\": \"v1.0.1\",\r\n                \"hash\": \"6d0ff2b38d15d9832297bc16c807320e035ddb96\"\r\n            }\r\n        }\r\n    }\r\n}"}],"_postman_id":"9c434e84-4132-4930-8674-6d7a73475276"},{"name":"Get third party licences","event":[{"listen":"test","script":{"id":"1e264e8e-5497-4271-ae68-8129c52051c3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","","pm.test(\"Response contains data\", function () {","    // Debug ","    console.log(Object.keys(response));","    ","    // Test","    pm.expect(response).to.be.an('object');","","});","","pm.test(\"Response contains keys\", function () {","    pm.expect(response.data[0].id).equal(\"chronos\");","    pm.expect(response.data[1].id).equal(\"edify\");","    pm.expect(response.data[2].id).equal(\"griffon\");","    pm.expect(response.data[3].id).equal(\"horizon\");","    pm.expect(response.data[4].id).equal(\"merlin\");","    pm.expect(response.data[5].id).equal(\"transcript\");","    pm.expect(response.data[6].id).equal(\"use\");","    pm.expect(response.data[7].id).equal(\"db\");","    pm.expect(response.data[8].id).equal(\"scaffold\");","    pm.expect(response.data[9].id).equal(\"pigeon\");","    pm.expect(response.data[10].id).equal(\"glass\");","    pm.expect(response.data[11].id).equal(\"proximity\");","});"],"type":"text/javascript"}}],"id":"fbe40106-24d0-4fa4-a4a9-d766327aeb69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/third-party-licences","description":"<p>Atomic support:❌</p>\n<p>This endpoint lists all the third party licences used by different components in the Exivity system.</p>\n","urlObject":{"path":["v2","third-party-licences"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"2be5000c-49ee-4799-b08c-41d1fd7afd12","name":"Get third party licences","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/third-party-licences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Host","value":"localhost:8012"},{"key":"Date","value":"Tue, 24 May 2022 15:06:57 GMT"},{"key":"Date","value":"Tue, 24 May 2022 15:06:57 GMT"},{"key":"Connection","value":"close"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Type","value":"application/json"},{"key":"X-Clockwork-Id","value":"X9701f22f1d04b5a63cc80b3853a62eec"},{"key":"X-Clockwork-Version","value":"1"},{"key":"X-Clockwork-Path","value":"_debugbar/clockwork/"},{"key":"phpdebugbar-id","value":"X9701f22f1d04b5a63cc80b3853a62eec"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy","value":"base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-6LGrC4JLSSDhnZ1rngrPzZZAhW0UDQMO';style-src 'self' 'nonce-6LGrC4JLSSDhnZ1rngrPzZZAhW0UDQMO';font-src 'self' data:"},{"key":"Request-Id","value":"bdfc7450-3eaa-4b64-9f90-389a85458fac"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"chronos\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses...\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"edify\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses..\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"griffon\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses..\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"horizon\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses..\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"merlin\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses..\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"transcript\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses..\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"use\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses...\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"db\",\n            \"attributes\": {\n                \"value\": \"# 3rd Party licenses...\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"scaffold\",\n            \"attributes\": {\n                \"value\": \"#3rd Party licenses...\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"pigeon\",\n            \"attributes\": {\n                \"value\": \"#3rd Party licenses...\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"glass\",\n            \"attributes\": {\n                \"value\": \"#3rd Party licenses...\"\n            }\n        },\n        {\n            \"type\": \"third-party-licences\",\n            \"id\": \"proximity\",\n            \"attributes\": {\n                \"value\": \"#3rd Party licenses...\"\n            }\n        }\n    ]\n}"}],"_postman_id":"fbe40106-24d0-4fa4-a4a9-d766327aeb69"}],"id":"50d152b1-e9e3-4524-ba46-6a5e40aafb87","event":[{"listen":"prerequest","script":{"id":"a2675b58-3ea0-4597-9515-63b606a9e910","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9b7bc8ea-6dee-4b27-a626-7aa9cff64870","type":"text/javascript","exec":[""]}}],"_postman_id":"50d152b1-e9e3-4524-ba46-6a5e40aafb87","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"/environments","item":[{"name":"Retrieve a list of environments","event":[{"listen":"test","script":{"id":"68af8af2-cd28-436a-a634-22c799de5e0c","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"341b51b0-4062-457e-bafe-3b58a501a9ee","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"0d52dab9-5c41-4b87-9924-34f68aafff93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/environments?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","environments"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>variables</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"d96000c3-2ac0-494e-9755-7fa89a676ea6","name":"Retrieve a list of environments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/environments?page[limit]=&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","environments"],"query":[{"key":"page[limit]","value":"","description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `variables`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 18 May 2022 07:24:38 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-Q7Swpo9UpmwzheymENqnzipyn8tgtout';style-src 'self' 'nonce-Q7Swpo9UpmwzheymENqnzipyn8tgtout';font-src 'self' data:"},{"key":"Request-Id","value":"3abf7414-15a5-44d2-8768-ab2d68fc0e4d"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"environment\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"asdgf\",\n                \"default_flag\": false\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/environments/1\"\n            },\n            \"relationships\": {\n                \"variables\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/environments/1/relationships/variables\",\n                        \"related\": \"https://dev.exivity.net/v2/environments/1/variables\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 7,\n            \"count\": 1,\n            \"per_page\": 1,\n            \"current_page\": 1,\n            \"total_pages\": 7\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/environments?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/environments?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"next\": \"https://dev.exivity.net/v2/environments?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=2\",\n        \"last\": \"https://dev.exivity.net/v2/environments?page%5Blimit%5D=1&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=7\"\n    }\n}"}],"_postman_id":"0d52dab9-5c41-4b87-9924-34f68aafff93"},{"name":"Add a new environment","event":[{"listen":"test","script":{"id":"3070cd3f-69b5-48b1-aee9-40063f7842c1","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('environment');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","        \"name\",","        \"default_flag\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('test');","  pm.expect(response.data.attributes.default_flag).to.eql(true);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"environment_id\", response.data.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"a85b26fa-9c4f-40bf-9998-eec6cab5e1ac","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"4ef2b98b-46ff-48dc-b58c-7f763a697af9","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"environment\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"test\",\r\n\t\t\t\"default_flag\": true\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/environments","urlObject":{"path":["v2","environments"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"906dcc2f-0bb5-43d6-8bfd-d09852e5171f","name":"Add a new environment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"environment\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"test\",\r\n\t\t\t\"default_flag\": true\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/environments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 18 May 2022 07:24:50 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/Environment/Environments"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-jr2ekDZ8jFMdFme4evbVTF7Ffa6MPzKB';style-src 'self' 'nonce-jr2ekDZ8jFMdFme4evbVTF7Ffa6MPzKB';font-src 'self' data:"},{"key":"Request-Id","value":"d83dc2cb-06cb-4d73-a60b-c3e2c947de0f"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"environment\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"name\": \"test\",\n            \"default_flag\": true\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/environments/9\"\n        },\n        \"relationships\": {\n            \"variables\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/environments/9/relationships/variables\",\n                    \"related\": \"https://dev.exivity.net/v2/environments/9/variables\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"4ef2b98b-46ff-48dc-b58c-7f763a697af9"},{"name":"Retrieve an environment","event":[{"listen":"test","script":{"id":"237731f0-4de6-4e84-93c5-afa78b3d51b8","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('environment');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"environment_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","        \"name\",","        \"default_flag\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('test');","  pm.expect(response.data.attributes.default_flag).to.eql(true);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"64519dac-10a5-49a0-9f8d-509540231a5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/environments/{{environment_id}}?include=","urlObject":{"path":["v2","environments","{{environment_id}}"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>variables</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"09004d3b-e888-4524-85d8-91c29b0d0bb2","name":"Retrieve an environment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/environments/{{environment_id}}?include=","host":["{{base_url}}"],"path":["v2","environments","{{environment_id}}"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `variables`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 18 May 2022 07:24:59 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-RD6gjyEjrJEhCE38LPNGnkQXX5F2Ir2p';style-src 'self' 'nonce-RD6gjyEjrJEhCE38LPNGnkQXX5F2Ir2p';font-src 'self' data:"},{"key":"Request-Id","value":"d13452ce-e792-4526-8640-9df4c3920947"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"environment\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"name\": \"test\",\n            \"default_flag\": true\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/environments/9\"\n        },\n        \"relationships\": {\n            \"variables\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/environments/9/relationships/variables\",\n                    \"related\": \"https://dev.exivity.net/v2/environments/9/variables\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"64519dac-10a5-49a0-9f8d-509540231a5c"},{"name":"Update an environment","event":[{"listen":"test","script":{"id":"08ec28d8-52c3-4d17-b32e-5b6e24e55bce","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('environment');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"environment_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","        \"name\",","        \"default_flag\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('staging');","  pm.expect(response.data.attributes.default_flag).to.eql(false);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"0045e52b-c81a-46e2-8b79-8d1cff00cbd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"environment\",\r\n    \"id\": \"{{environment_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"staging\",\r\n      \"default_flag\": false\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/environments/{{environment_id}}","urlObject":{"path":["v2","environments","{{environment_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"cfa5b94e-47a6-4427-a60d-8a7e84de417b","name":"Update an environment","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"type\": \"environment\",\r\n    \"id\": \"{{environment_id}}\",\r\n    \"attributes\": {\r\n      \"name\": \"staging_updated\",\r\n      \"default_flag\": false\r\n    }\r\n  }\r\n}"},"url":"{{base_url}}/v2/environments/{{environment_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 18 May 2022 07:25:27 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-EtM0reYiizcPmnT7PKL3Fr6axkfyCEfT';style-src 'self' 'nonce-EtM0reYiizcPmnT7PKL3Fr6axkfyCEfT';font-src 'self' data:"},{"key":"Request-Id","value":"52855dc3-c002-460a-b054-35cc88bf8acb"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"environment\",\n        \"id\": \"9\",\n        \"attributes\": {\n            \"name\": \"staging_updated\",\n            \"default_flag\": false\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/environments/9\"\n        },\n        \"relationships\": {\n            \"variables\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/environments/9/relationships/variables\",\n                    \"related\": \"https://dev.exivity.net/v2/environments/9/variables\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"0045e52b-c81a-46e2-8b79-8d1cff00cbd6"},{"name":"Delete an environment","event":[{"listen":"test","script":{"id":"92a53893-de85-4e08-88e6-e7f6a62fc3fc","exec":["// Commented out tests, since we're deleting the last environment here,","// which is forbidden since EXVT-3415","","// pm.test(\"Status code is 204\", function () {","//     pm.response.to.have.status(204);","// });","","// console.log('UNSET environment_id');","// pm.environment.unset(\"environment_id\");",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"68d6587b-e092-49c7-8610-c0c190953f39","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"f121640c-8cbf-40e6-a1b1-47b382c39b4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/environments/:environment_id","urlObject":{"path":["v2","environments",":environment_id"],"host":["{{base_url}}"],"query":[],"variable":[{"id":"72a953b7-cf2d-4c67-8b5c-1116a793158a","type":"string","value":"{{environment_id}}","key":"environment_id"}]}},"response":[{"id":"9bee6d26-eb84-4b79-bb5f-4e3a0b8fa623","name":"Delete an environment","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{base_url}}/v2/environments/:environment_id","host":["{{base_url}}"],"path":["v2","environments",":environment_id"],"variable":[{"id":"72a953b7-cf2d-4c67-8b5c-1116a793158a","key":"environment_id","value":"{{environment_id}}","type":"string"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 18 May 2022 07:25:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-ZO0AXG2kjfZ7jIa5Y4DYJFFU7BK5Shur';style-src 'self' 'nonce-ZO0AXG2kjfZ7jIa5Y4DYJFFU7BK5Shur';font-src 'self' data:"},{"key":"Request-Id","value":"fe571107-0f2c-4053-80d7-c183e90e1d82"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f121640c-8cbf-40e6-a1b1-47b382c39b4e"}],"id":"c8c3b647-5700-497a-b510-0fd81110b627","description":"<p>Atomic support: ✔️</p>\n<p>Environments store global variables. An environment can be set as the default; variables defined in the default environment are also available in all other environments and can be overridden in each environment.</p>\n<p>Exivity documentation: <a href=\"https://docs.exivity.com/administration/settings/global-variables\">https://docs.exivity.com/administration/settings/global-variables</a></p>\n<h2 id=\"the-environment-object\">The Environment Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>mutability</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required, unique</td>\n</tr>\n<tr>\n<td>default_flag</td>\n<td>boolean</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>relationship</th>\n<th>cardinality</th>\n<th>type</th>\n<th>required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>variables</td>\n<td>hasMany</td>\n<td>variables</td>\n<td>❌</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"9919e041-4c6d-4226-a82e-05ec59692b49","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c84adf08-93e4-46f6-9d13-76e03a4edf0e","type":"text/javascript","exec":[""]}}],"_postman_id":"c8c3b647-5700-497a-b510-0fd81110b627","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"/variables","item":[{"name":"Retrieve a list of variables","event":[{"listen":"test","script":{"id":"d637e285-d3d3-45c4-a505-c051820dc7da","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"ec3e5169-0d7f-4aa0-a2e3-0145129b4ca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/variables?page[limit]&page[offset]&sort&filter[attribute]&include=","urlObject":{"path":["v2","variables"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Limit the amount of results returned</p>\n","type":"text/plain"},"key":"page[limit]","value":null},{"description":{"content":"<p>Return this page of the results</p>\n","type":"text/plain"},"key":"page[offset]","value":null},{"description":{"content":"<p>Sort results by this attribute</p>\n","type":"text/plain"},"key":"sort","value":null},{"description":{"content":"<p>Filter results by this attribute</p>\n","type":"text/plain"},"key":"filter[attribute]","value":null},{"description":{"content":"<p>Include additional related resources. Possible values: <code>environment</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"ae5ef1b4-41fb-45d9-a525-9839da0c8f57","name":"Retrieve a list of variables","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/variables?page[limit]&page[offset]&sort&filter[attribute]&include=","host":["{{base_url}}"],"path":["v2","variables"],"query":[{"key":"page[limit]","value":null,"description":"Limit the amount of results returned"},{"key":"page[offset]","value":null,"description":"Return this page of the results"},{"key":"sort","value":null,"description":"Sort results by this attribute"},{"key":"filter[attribute]","value":null,"description":"Filter results by this attribute"},{"key":"include","value":"","description":"Include additional related resources. Possible values: `environment`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 17 May 2022 15:50:03 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-LiyxjQi1g7w3J9WvVMOr9yqcWEzISAco';style-src 'self' 'nonce-LiyxjQi1g7w3J9WvVMOr9yqcWEzISAco';font-src 'self' data:"},{"key":"Request-Id","value":"d327baad-e3c3-4b01-8a65-77df0fed1443"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"variable\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"asdf\",\n                \"value\": \"234\",\n                \"encrypted\": false\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/variables/1\"\n            },\n            \"relationships\": {\n                \"environment\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/variables/1/relationships/environment\",\n                        \"related\": \"https://dev.exivity.net/v2/variables/1/environment\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"variable\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"name\": \"USERNAME\",\n                \"value\": \"alice\",\n                \"encrypted\": false\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/variables/2\"\n            },\n            \"relationships\": {\n                \"environment\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/variables/2/relationships/environment\",\n                        \"related\": \"https://dev.exivity.net/v2/variables/2/environment\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 2,\n            \"count\": 2,\n            \"per_page\": 15,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/variables?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/variables?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/variables?page%5Blimit%5D=&sort=&filter%5Battribute%5D=&include=&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"ec3e5169-0d7f-4aa0-a2e3-0145129b4ca6"},{"name":"Add a new variable","event":[{"listen":"test","script":{"id":"d71a4914-1648-49ac-9af6-c1a733de5436","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('variable');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","        \"name\",","        \"value\",","        \"encrypted\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('USERNAME');","  pm.expect(response.data.attributes.value).to.eql('admin');","  pm.expect(response.data.attributes.encrypted).to.eql(false);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});","","pm.environment.set(\"variable_id\", response.data.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6a6578a9-cdea-423c-96b2-5db1215d13fb","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.requireEnvironment)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });\r",""],"type":"text/javascript"}}],"id":"73d27fd9-9507-4381-9bc5-6d2d750afeb6","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/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"variable\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"USERNAME\",\r\n\t\t\t\"value\": \"admin\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n        \t\"environment\": {\r\n        \t\t\"data\": {\r\n        \t\t\t\"type\": \"environment\",\r\n        \t\t\t\"id\": \"{{environment_id}}\"\r\n        \t\t}\r\n        \t}\r\n        }\r\n\t}\r\n}"},"url":"{{base_url}}/v2/variables","urlObject":{"path":["v2","variables"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"092587f8-0c55-4a4d-a7fc-1639e45049a9","name":"Add a new variable","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/vnd.api+json"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"variable\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"USERNAME\",\r\n\t\t\t\"value\": \"admin\"\r\n\t\t},\r\n\t\t\"relationships\": {\r\n        \t\"environment\": {\r\n        \t\t\"data\": {\r\n        \t\t\t\"type\": \"environment\",\r\n        \t\t\t\"id\": \"{{environment_id}}\"\r\n        \t\t}\r\n        \t}\r\n        }\r\n\t}\r\n}"},"url":"{{base_url}}/v2/variables"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 17 May 2022 15:49:13 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Location","value":"https://dev.exivity.net/v2/Variable/Variables"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-0Zw71bScXSmSXpuhf6pIg31ZHD00k4ED';style-src 'self' 'nonce-0Zw71bScXSmSXpuhf6pIg31ZHD00k4ED';font-src 'self' data:"},{"key":"Request-Id","value":"cac2ccbf-1864-4c83-b727-de2a83e6d034"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"variable\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"name\": \"USERNAME\",\n            \"value\": \"admin\",\n            \"encrypted\": false\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/variables/2\"\n        },\n        \"relationships\": {\n            \"environment\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/variables/2/relationships/environment\",\n                    \"related\": \"https://dev.exivity.net/v2/variables/2/environment\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"73d27fd9-9507-4381-9bc5-6d2d750afeb6"},{"name":"Retrieve a variable","event":[{"listen":"test","script":{"id":"40bbc5dc-344e-4718-9077-0bfd264a56ef","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('variable');","    pm.expect(response.data.id).to.eql(pm.environment.get(\"variable_id\").toString());","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","        \"name\",","        \"value\",","        \"encrypted\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('USERNAME');","  pm.expect(response.data.attributes.value).to.eql('admin');","  pm.expect(response.data.attributes.encrypted).to.eql(false);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"1a5d5827-3890-4acc-a6d8-3611dcc42bd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":"{{base_url}}/v2/variables/{{variable_id}}?include=","urlObject":{"path":["v2","variables","{{variable_id}}"],"host":["{{base_url}}"],"query":[{"description":{"content":"<p>Include additional related resources. Possible values: <code>environment</code>.</p>\n","type":"text/plain"},"key":"include","value":""}],"variable":[]}},"response":[{"id":"d1680fb9-e00a-4a62-868a-ccc3d7d4bfce","name":"Retrieve a variable","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json"}],"url":{"raw":"{{base_url}}/v2/variables/{{variable_id}}?include=","host":["{{base_url}}"],"path":["v2","variables","{{variable_id}}"],"query":[{"key":"include","value":"","description":"Include additional related resources. Possible values: `environment`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 17 May 2022 15:49:46 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-fbs7PJUXrLFyqrSn4OiChOondAz6Bg88';style-src 'self' 'nonce-fbs7PJUXrLFyqrSn4OiChOondAz6Bg88';font-src 'self' data:"},{"key":"Request-Id","value":"e3070a02-ae59-49d2-941d-d620e54d0e42"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"variable\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"name\": \"USERNAME\",\n            \"value\": \"alice\",\n            \"encrypted\": false\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/variables/2\"\n        },\n        \"relationships\": {\n            \"environment\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/variables/2/relationships/environment\",\n                    \"related\": \"https://dev.exivity.net/v2/variables/2/environment\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1a5d5827-3890-4acc-a6d8-3611dcc42bd5"},{"name":"Update a variable","event":[{"listen":"test","script":{"id":"98886179-7916-4a5f-ae43-398e6f545ad7","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains correct data\", function () {","    pm.expect(response.data).to.be.an('object');","    pm.expect(response.data.type).to.eql('variable');","    pm.expect(response.data.id).to.not.be.undefined;","    pm.expect(response.data.attributes).to.be.an('object');","    pm.expect(response.data.attributes).to.have.keys([","        \"name\",","        \"value\",","        \"encrypted\"","  ]);","  pm.expect(response.data.attributes.name).to.eql('USERNAME');","  pm.expect(response.data.attributes.value).to.eql('alice');","  pm.expect(response.data.attributes.encrypted).to.eql(false);","});","","pm.test(\"Response contains data.links\", function () {","    pm.expect(response.data.links).to.be.an('object');","});",""],"type":"text/javascript"}}],"id":"aec931d5-ba4d-40c2-b88b-140123b3080e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"variable\",\r\n\t    \"id\": \"{{variable_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"USERNAME\",\r\n\t\t\t\"value\": \"alice\",\r\n\t\t\t\"encrypted\": false\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/variables/{{variable_id}}","urlObject":{"path":["v2","variables","{{variable_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[{"id":"15a8cccc-c58b-4476-805b-36371c3696df","name":"Update a variable","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/vnd.api+json","type":"text"},{"key":"Accept","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\r\n\t\"data\": {\r\n\t\t\"type\": \"variable\",\r\n\t    \"id\": \"{{variable_id}}\",\r\n\t\t\"attributes\": {\r\n\t\t\t\"name\": \"USERNAME\",\r\n\t\t\t\"value\": \"alice\",\r\n\t\t\t\"encrypted\": false\r\n\t\t}\r\n\t}\r\n}"},"url":"{{base_url}}/v2/variables/{{variable_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 17 May 2022 15:49:31 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-L6g7XQTWxR1pbWsOUneZuGJpv4VA8cb6';style-src 'self' 'nonce-L6g7XQTWxR1pbWsOUneZuGJpv4VA8cb6';font-src 'self' data:"},{"key":"Request-Id","value":"470cd311-3bd7-4fa8-ade3-1315b5339183"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"variable\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"name\": \"USERNAME\",\n            \"value\": \"alice\",\n            \"encrypted\": false\n        },\n        \"links\": {\n            \"self\": \"https://dev.exivity.net/v2/variables/2\"\n        },\n        \"relationships\": {\n            \"environment\": {\n                \"links\": {\n                    \"self\": \"https://dev.exivity.net/v2/variables/2/relationships/environment\",\n                    \"related\": \"https://dev.exivity.net/v2/variables/2/environment\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"aec931d5-ba4d-40c2-b88b-140123b3080e"},{"name":"Delete a variable","event":[{"listen":"test","script":{"id":"6b994c24-b006-4042-911d-c19c6c3c5808","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","console.log('UNSET variable_id');","pm.environment.unset(\"variable_id\");"],"type":"text/javascript"}}],"id":"c030662c-d882-4ce1-bf32-34b2826bd842","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/v2/variables/{{variable_id}}","urlObject":{"path":["v2","variables","{{variable_id}}"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c030662c-d882-4ce1-bf32-34b2826bd842"}],"id":"4016ec02-e604-440c-9586-f6adb61a4d02","description":"<p>Atomic support: ✔️</p>\n<p><em>Global Variables</em> enable users to configure Exivity system-wide variables which can be used in any Extractor or Transformer script.</p>\n<p>Exivity documentation:</p>\n<p><a href=\"https://docs.exivity.com/architecture%20concepts/glossary/#environment\">https://docs.exivity.com/architecture%20concepts/glossary/#environment</a></p>\n<h2 id=\"the-variables-object\">The Variables Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>attribute</th>\n<th>type</th>\n<th>mutability</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required, unique</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>📝 editable</td>\n<td>Required</td>\n</tr>\n<tr>\n<td>encrypted</td>\n<td>boolean</td>\n<td>🔏 immutable</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>environment</td>\n<td>hasOne</td>\n<td>environment</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"94e0d128-9524-410f-a8b9-7c2bacf3220c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e01fa18d-8aa4-4272-a0b1-26e07d2662f5","type":"text/javascript","exec":[""]}}],"_postman_id":"4016ec02-e604-440c-9586-f6adb61a4d02","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"/failed-jobs","item":[{"name":"Get all failed jobs","id":"a337263a-6ea5-4824-87cb-f60beb12535e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{base_url}}/v2/failed-jobs","urlObject":{"path":["v2","failed-jobs"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a337263a-6ea5-4824-87cb-f60beb12535e"}],"id":"69c71bf7-1071-49e7-b8d6-73f702ccc318","_postman_id":"69c71bf7-1071-49e7-b8d6-73f702ccc318","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}},{"name":"Billing","item":[{"name":"/cuprs","item":[{"name":"Retrieve a list of CUPRs","event":[{"listen":"test","script":{"id":"7c02b33d-8731-4190-8efa-6ffe12b9d3a7","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","const response = pm.response.json();","console.log(response);","","pm.test(\"Response contains data\", function () {","    pm.expect(response.data).to.be.an('object');","});",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"d2b6e9b7-5348-4376-b9d3-47aaddf9c936","exec":["const api = eval(pm.globals.get('exivity'))();\r","\r","api.start()\r","    .then(api.requireToken)\r","    .then(api.ready)\r","    .catch(function(err) {\r","        console.log(err);\r","    });"],"type":"text/javascript"}}],"id":"231f6c75-219b-4f75-a2ec-963a6ddc9a69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"{{base_url}}/v2/cuprs","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}},"urlObject":{"path":["v2","cuprs"],"host":["{{base_url}}"],"query":[{"disabled":true,"description":{"content":"<p>Optionally filter the output by dset or months. Possible fields are <code>[dset][]</code>, <code>[start_month]</code>(Y-m), <code>[end_month]</code>(Y-m). This parameter can occur multiple times in a request to filter by multiple dsets and combine them with the date range.</p>\n","type":"text/plain"},"key":"filter","value":""}],"variable":[]}},"response":[{"id":"d032381e-e032-4e71-a392-35321183fa11","name":"Retrieve a list of CUPRs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"{{base_url}}/v2/cuprs","host":["{{base_url}}"],"path":["v2","cuprs"],"query":[{"key":"page[limit]","value":"","description":"Optionally filter the output by dset or months. Possible fields are `[dset][]`, `[start_month]`(Y-m), `[end_month]`(Y-m). This parameter can occur multiple times in a request to filter by multiple dsets and combine them with the date range.","disabled":true},{"key":"page[offset]","value":null,"type":"text","disabled":true},{"key":"sort","value":null,"type":"text","disabled":true},{"key":"filter[attribute]","value":"=2017-08","type":"text","disabled":true},{"key":"include","value":"dset","description":"Include additional related resources. Possible values: `dset`.","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 23 May 2022 07:45:44 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"expires","value":"-1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Feature-Policy","value":"autoplay 'none'; camera 'none'"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Content-Security-Policy-Report-Only","value":"report-uri https://sentry.io/api/120999/security/?sentry_key=7935c59cd7ad4e169ed97fac6d9c5f9d;base-uri 'self';connect-src 'self';default-src 'self';form-action 'self';img-src 'self' data:;media-src 'self';object-src 'none';script-src 'self' 'nonce-UliS4gPQtZX7MpAqcplEA9ZjcOBm33oE';style-src 'self' 'nonce-UliS4gPQtZX7MpAqcplEA9ZjcOBm33oE';font-src 'self' data:"},{"key":"Request-Id","value":"f981df2b-3c5d-44ec-9f83-72b1a3406c10"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"cupr\",\n            \"id\": \"allauto.usage-201708\",\n            \"attributes\": {\n                \"month\": \"2017-08\",\n                \"value\": 20\n            },\n            \"links\": {\n                \"self\": \"https://dev.exivity.net/v2/cuprs/allauto.usage-201708\"\n            },\n            \"relationships\": {\n                \"dset\": {\n                    \"links\": {\n                        \"self\": \"https://dev.exivity.net/v2/cuprs/allauto.usage-201708/relationships/dset\",\n                        \"related\": \"https://dev.exivity.net/v2/cuprs/allauto.usage-201708/dset\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"pagination\": {\n            \"total\": 1,\n            \"count\": 1,\n            \"per_page\": -1,\n            \"current_page\": 1,\n            \"total_pages\": 1\n        }\n    },\n    \"links\": {\n        \"self\": \"https://dev.exivity.net/v2/cuprs?filter%5Bdset%5D=%3Dallauto.usage&page%5Boffset%5D=1\",\n        \"first\": \"https://dev.exivity.net/v2/cuprs?filter%5Bdset%5D=%3Dallauto.usage&page%5Boffset%5D=1\",\n        \"last\": \"https://dev.exivity.net/v2/cuprs?filter%5Bdset%5D=%3Dallauto.usage&page%5Boffset%5D=1\"\n    }\n}"}],"_postman_id":"231f6c75-219b-4f75-a2ec-963a6ddc9a69"}],"id":"2da384a1-7f21-4ea3-a3cb-bd6086786139","description":"<p>Atomic support: ❌</p>\n<h4 id=\"the-cuprs-object\">The CUPRS Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>attribute</strong></th>\n<th><strong>type</strong></th>\n<th><strong>mutability</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>month</td>\n<td>string</td>\n<td>👁 read-only</td>\n<td>In yyyy-mm format.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>integer</td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n<tr>\n<td>meta</td>\n<td></td>\n<td>👁 read-only</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The following relationships can be included:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>relationship</strong></th>\n<th><strong>cardinality</strong></th>\n<th><strong>type</strong></th>\n<th><strong>required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>dset</td>\n<td>hasOne</td>\n<td>dset</td>\n<td>✔️</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2da384a1-7f21-4ea3-a3cb-bd6086786139","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}}],"id":"7075f4d8-e81d-4cb6-8383-b86485ff8c7c","_postman_id":"7075f4d8-e81d-4cb6-8383-b86485ff8c7c","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","name":"Administration","type":"folder"}}}],"id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"3460a0b4-7fff-4413-b54c-a23878d041bc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d31abe3c-f2a8-4f4e-87c7-a34682ad32db","type":"text/javascript","exec":[""]}}],"_postman_id":"1ca87589-5b4d-47c1-bae6-c833ca4567ae","description":""}],"event":[{"listen":"prerequest","script":{"id":"5bbe69ac-75dd-4a18-ba40-2a494083529f","type":"text/javascript","exec":["console.log('');","console.log('********************* ' + pm.info.requestName + '(v2) *********************');","","const helpers = () => {","","  const api = {};","","  // Generic helpers","","  let interval = 100; // check every x ms","  let max = 60000; // 1 minute","","  let started = false;","  let finished = false;","  let elapsed = 0;","","  function wait() {","    if (!finished && elapsed <= max) {","      setTimeout(wait, interval);","      elapsed += interval;","    }","  }","","  function promisify(fn) {","    return function (arg) {","      if (!started) {","        started = true;","        wait();","      }","      return new Promise(function (accept, reject) {","        fn(arg, function (err, res) {","          if (err) {","            reject(err);","          } else {","            accept(res);","          }","        });","      });","","    };","  }","","  api.asyncRequest = promisify(pm.sendRequest);","","  api.start = function () {","    console.log('---- Pre-request Script start ----');","    wait();","    return new Promise(function (accept, reject) {","      accept();","    });","  };","","  api.ready = function () {","    finished = true;","    console.log('---- Pre-request Script end ----');","  };","","  // Domain helpers","  api.requireToken = function () {","    console.log('requireToken()');","","    // Check if Token ID is set","    if (pm.environment.get(\"token\") && pm.environment.get(\"token\") !== 'undefined') {","      console.log('GET token: ' + pm.environment.get(\"token\"));","      return pm.environment.get(\"token\");","    }","","    // Check if username & password areset","    if (!pm.environment.get(\"username\") || !pm.environment.get(\"password\")) {","      throw new Error('Username or password not set');","    }","","    var details = {","      'username': encodeURIComponent(pm.environment.get(\"username\")),","      'password': encodeURIComponent(pm.environment.get(\"password\")),","    };","    var formBody = [];","    for (var property in details) {","      var encodedKey = encodeURIComponent(property);","      var encodedValue = encodeURIComponent(details[property]);","      formBody.push(encodedKey + \"=\" + encodedValue);","    }","","    // Generate token","    return api.asyncRequest({","      // Create a new token","      url: pm.variables.get(\"base_url\") + '/v2/auth/token?include=user',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/x-www-form-urlencoded'","      },","      body: formBody.join(\"&\")","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 200)) {","        throw new Error(response);","      }","      json = response.json();","","      pm.environment.set(\"token\", json.data.attributes.token);","      console.log('SET token: ' + pm.environment.get(\"token\"));","      pm.environment.set(\"user_id\", json.data.relationships.user.data.id);","      console.log('SET user_id: ' + pm.environment.get(\"user_id\"));","","      return pm.environment.get(\"token\");","    });","  };","","  api.requireReportDefinition = function () {","    console.log('requireReportDefinition()');","","    // Check if report defintion ID is set","    if (pm.environment.get(\"reportdefinition_id\") && pm.environment.get(\"reportdefinition_id\") !== 'undefined') {","      console.log('GET reportdefinition_id: ' + pm.environment.get(\"reportdefinition_id\"));","      return pm.environment.get(\"reportdefinition_id\");","    }","","    // Check Dset ID is set","    if (!pm.environment.get(\"dset_id\")) {","      throw new Error('Dset ID not set - need to create report');","    }","","    // Not set - create report defintion","    return api.asyncRequest({","      // Create a new report","      url: pm.variables.get(\"base_url\") + '/v2/reportdefinitions',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"reportdefinition\",","            \"attributes\": {","              \"name\": \"Test report - \" + Math.floor(Math.random() * 1000),","              \"dset\": pm.variables.get(\"dset_id\"),","              \"level_keys\": [","                {","                  \"key_column\": \"Country\",","                  \"name_column\": \"Country\",","                  \"label\": \"Country\",","                  \"level\": 1","                },","                {","                  \"key_column\": \"Reseller\",","                  \"name_column\": \"Reseller\",","                  \"label\": \"Reseller\",","                  \"level\": 2","                },","              ]","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"reportdefinition_id\", json.data.id);","      console.log('SET reportdefinition_id: ' + pm.environment.get(\"reportdefinition_id\"));","      return pm.environment.get(\"reportdefinition_id\");","    });","  };","","  api.requireAccount = function (reportId) {","    console.log('reqireAccount()');","","    // Check if Account ID is set","    if (pm.environment.get(\"account_id\") && pm.environment.get(\"account_id\") !== 'undefined') {","      console.log('GET account_id: ' + pm.environment.get(\"account_id\"));","      return pm.environment.get(\"account_id\");","    }","","    // Not set - create account","","    // Check report definition ID","    if (!pm.environment.get(\"reportdefinition_id\")) {","      throw new Error('Report definition ID not set - need to create Account');","    }","","    return api.asyncRequest({","      // Create a new account","      url: pm.variables.get(\"base_url\") + '/v2/accounts',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"account\",","            \"attributes\": {","              \"name\": \"Test account - \" + Math.floor(Math.random() * 1000),","            },","            \"relationships\": {","              \"reportdefinition\": {","                \"data\": {","                  \"type\": \"reportdefinition\",","                  \"id\": pm.variables.get(\"reportdefinition_id\")","                }","              }","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"account_id\", json.data.id);","      console.log('SET account_id: ' + pm.environment.get(\"account_id\"));","      return pm.environment.get(\"account_id\");","    });","  };","","  api.requireBudget = function () {","    console.log('requireBudget()');","","    // Check if budget ID is set","    if (pm.environment.get(\"budget_id\") && pm.environment.get(\"budget_id\") !== 'undefined') {","      console.log('SET budget_id: ' + pm.environment.get(\"budget_id\"));","      return pm.environment.get(\"budget_id\");","    }","","    return api.asyncRequest({","      // Create a new budget","      url: pm.variables.get(\"base_url\") + '/v2/budgets',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"budget\",","            \"attributes\": {","              \"interval\": \"year\",","              \"description\": \"Test Budget - \" + Math.floor(Math.random() * 1000),","              \"metric\": \"cogs\"","            },","            \"relationships\": {","              \"report\": {","                \"data\": {","                  \"type\": \"report\",","                  \"id\": pm.variables.get(\"report_id\")","                }","              }","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"budget_id\", json.data.id);","      console.log('SET budget_id: ' + pm.environment.get(\"budget_id\"));","      return pm.environment.get(\"budget_id\");","    });","  };","","  api.requireBudgetRevision = function (budgetId) {","    console.log('requireBudgetRevision()');","","    // Check if budget ID is set","    if (pm.environment.get(\"budgetrevision_id\") && pm.environment.get(\"budgetrevision_id\") !== 'undefined') {","      console.log('SET budgetrevision_id: ' + pm.environment.get(\"budgetrevision_id\"));","      return pm.environment.get(\"budgetrevision_id\");","    }","","    return api.asyncRequest({","      // Create a new budget revision","      url: pm.variables.get(\"base_url\") + '/v2/budgetrevisions',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"budgetrevision\",","            \"attributes\": {","              \"effective_from\": \"20190606\"","            },","            \"relationships\": {","              \"budget\": {","                \"data\": {","                  \"type\": \"budget\",","                  \"id\": pm.variables.get(\"budget_id\")","                }","              }","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"budgetrevision_id\", json.data.id);","      console.log('SET budgetrevision_id: ' + pm.environment.get(\"budgetrevision_id\"));","      return pm.environment.get(\"budgetrevision_id\");","    });","  };","","  api.requireService = function () {","    console.log('requireService()');","","    // Check if service ID is set","    if (pm.environment.get(\"service_id\") && pm.environment.get(\"service_id\") !== 'undefined') {","      console.log('SET service_id: ' + pm.environment.get(\"service_id\"));","      return pm.environment.get(\"service_id\");","    }","","    // Check Dset ID is set","    if (!pm.environment.get(\"dset_id\")) {","      throw new Error('Dset ID not set - need to create service');","    }","","    return api.asyncRequest({","      // Create a new service","      url: pm.variables.get(\"base_url\") + '/v2/services',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"service\",","            \"attributes\": {","              \"key\": \"Test Service - \" + Math.floor(Math.random() * 1000),","              \"description\": \"test service\",","              \"unit_label\": \"hours\",","              \"dset\": pm.variables.get(\"dset_id\"),","              \"type\": \"service_name_in_header\",","              \"usage_col\": \"unique_key\",","              \"consumption_col\": \"quantity\",","              \"instance_col\": \"hostname\",","              \"interval\": \"individually\",","              \"charge_type\": \"manual_per_unit\",","              \"cogs_type\": \"none\",","              \"proration_type\": \"full\",","              \"charge_model\": \"peak\"","            },","            \"relationships\": {","              \"servicecategory\": {","                \"data\": {","                  \"type\": \"servicecategory\",","                  \"id\": pm.variables.get(\"servicecategory_id\")","                }","              }","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"service_id\", json.data.id);","      console.log('SET service_id: ' + pm.environment.get(\"service_id\"));","      return pm.environment.get(\"service_id\");","    });","  };","","  api.requireServiceCategory = function () {","    console.log('requireServiceCategory()');","","    // Check if service category ID is set","    if (pm.environment.get(\"servicecategory_id\") && pm.environment.get(\"servicecategory_id\") !== 'undefined') {","      console.log('SET servicecategory_id: ' + pm.environment.get(\"servicecategory_id\"));","      return pm.environment.get(\"servicecategory_id\");","    }","","    return api.asyncRequest({","      // Create a new service category","      url: pm.variables.get(\"base_url\") + '/v2/servicecategories',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"servicecategory\",","            \"attributes\": {","              \"name\": \"Test Service Category - \" + Math.floor(Math.random() * 1000),","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"servicecategory_id\", json.data.id);","      console.log('SET servicecategory_id: ' + pm.environment.get(\"servicecategory_id\"));","      return pm.environment.get(\"servicecategory_id\");","    });","  };","","  api.requireRate = function () {","    console.log('requireRate()');","","    // Check if rate ID is set","    if (pm.environment.get(\"rate_id\") && pm.environment.get(\"rate_id\") !== 'undefined') {","      console.log('SET rate_id: ' + pm.environment.get(\"rate_id\"));","      return pm.environment.get(\"rate_id\");","    }","","    // Check service ID","    if (!pm.environment.get(\"service_id\")) {","      throw new Error('Service ID not set - need to create rate');","    }","","    return api.asyncRequest({","      // Create a new rate","      url: pm.variables.get(\"base_url\") + '/v2/rates',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"rate\",","            \"attributes\": {","              \"rate\": \"1.0\",","              \"rate_col\": \"rate_col\",","              \"fixed\": \"2.0\",","              \"fixed_col\": \"fixed_col\",","              \"cogs_rate\": \"3.0\",","              \"cogs_rate_col\": \"cogs_rate_col\",","              \"cogs_fixed\": \"4.0\",","              \"cogs_fixed_col\": \"cogs_fixed_col\",","              \"effective_date\": \"2017-08-27\"","            },","            \"relationships\": {","              \"service\": {","                \"data\": {","                  \"type\": \"service\",","                  \"id\": pm.variables.get(\"service\")","                }","              }","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"rate_id\", json.data.id);","      console.log('SET rate_id: ' + pm.environment.get(\"rate_id\"));","      return pm.environment.get(\"rate_id\");","    });","  };","","  api.requireWorkflow = function () {","    console.log('requireWorkflow()');","","    // Check if ID is already set","    if (pm.environment.get(\"workflow_id\") && pm.environment.get(\"workflow_id\") !== 'undefined') {","      console.log('GET workflow_id: ' + pm.environment.get(\"workflow_id\"));","      return pm.environment.get(\"workflow_id\");","    }","","    return api.asyncRequest({","      // Create a new budget","      url: pm.variables.get(\"base_url\") + '/v2/workflows',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"workflow\",","            \"attributes\": {","              \"name\": \"Test workflow\" + Math.floor(Math.random() * 1000),","              \"description\": \"This is test task\",","              \"hidden\": false","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"workflow_id\", json.data.id);","      console.log('SET workflow_id: ' + pm.environment.get(\"workflow_id\"));","      return pm.environment.get(\"workflow_id\");","    });","  };","","  api.requireWorkflowExecuteStep = function () {","    console.log('requireWorkflowExecuteStep()');","","    // Check if ID is already set","    if (pm.environment.get(\"execute_workflowstep_id\") && pm.environment.get(\"execute_workflowstep_id\") !== 'undefined') {","      console.log('GET execute_workflowstep_id: ' + pm.environment.get(\"execute_workflowstep_id\"));","      return pm.environment.get(\"execute_workflowstep_id\");","    }","","    return api.asyncRequest({","      // Create a new budget","      url: pm.variables.get(\"base_url\") + '/v2/workflowsteps',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"workflowstep\",","            \"attributes\": {","              \"type\": \"execute\",","              \"sort\": 1,","              \"timeout\": 600,","              \"options\": {","                \"command\": \"echo \\\"testing\\\"\"","              }","            },","            \"relationships\": {","              \"workflow\": {","                \"data\": {","                  \"type\": \"workflow\",","                  \"id\": pm.variables.get(\"workflow_id\")","                }","              }","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"execute_workflowstep_id\", json.data.id);","      console.log('SET execute_workflowstep_id: ' + pm.environment.get(\"execute_workflowstep_id\"));","      return pm.environment.get(\"execute_workflowstep_id\");","    });","  };","","  api.runWorkflow = function () {","    console.log('runWorkflow()');","","    // Check Workflow ID is set","    if (!pm.environment.get(\"workflow_id\")) {","      throw new Error('Can\\'t run workflow - Workflow ID not set');","    }","","    return api.asyncRequest({","      url: pm.variables.get(\"base_url\") + '/v2/workflows/' + pm.environment.get(\"workflow_id\") + '/run',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 200)) {","        throw new Error(response);","      }","    });","  };","","  api.requireEnvironment = function () {","    console.log('requireEnvironment()');","","    // Check if service category ID is set","    if (pm.environment.get(\"environment_id\") && pm.environment.get(\"environment_id\") !== 'undefined') {","      console.log('SET environment_id: ' + pm.environment.get(\"environment_id\"));","      return pm.environment.get(\"environment_id\");","    }","","    return api.asyncRequest({","      // Create a new service category","      url: pm.variables.get(\"base_url\") + '/v2/environments',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"environment\",","            \"attributes\": {","              \"name\": \"Test Environment - \" + Math.floor(Math.random() * 1000),","              \"default_flag\": false","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"environment_id\", json.data.id);","      console.log('SET environment_id: ' + pm.environment.get(\"environment_id\"));","      return pm.environment.get(\"environment_id\");","    });","  };","","  api.requireMetadataDefinition = function () {","    console.log('requireMetadataDefinition()');","","    // Check if metadatadefinition ID is set","    if (pm.environment.get(\"metadatadefinition_id\") && pm.environment.get(\"metadatadefinition_id\") !== 'undefined') {","      console.log('SET metadatadefinition_id: ' + pm.environment.get(\"metadatadefinition_id\"));","      return pm.environment.get(\"metadatadefinition_id\");","    }","","    return api.asyncRequest({","      // Create a new metadata definition","      url: pm.variables.get(\"base_url\") + '/v2/metadatadefinitions',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"metadatadefinition\",","            \"attributes\": {","              \"name\": \"Test definition - \" + Math.floor(Math.random() * 1000),","              \"fields\": [","                {","                  \"name\": \"country\",","                  \"type\": \"string\"","                }","              ]","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"metadatadefinition_id\", json.data.id);","      console.log('SET metadatadefinition_id: ' + pm.environment.get(\"metadatadefinition_id\"));","      return pm.environment.get(\"metadatadefinition_id\");","    });","  };","","  api.requireUsergroup = function () {","    console.log('requireUsergroup()');","","    // Check if usergroup ID is set","    if (pm.environment.get(\"usergroup_id\") && pm.environment.get(\"usergroup_id\") !== 'undefined') {","      console.log('SET usergroup_id: ' + pm.environment.get(\"usergroup_id\"));","      return pm.environment.get(\"usergroup_id\");","    }","","    return api.asyncRequest({","      // Create a new usergroup","      url: pm.variables.get(\"base_url\") + '/v2/usergroups',","      method: 'POST',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      },","      body: {","        mode: 'raw',","        raw: JSON.stringify({","          \"data\": {","            \"type\": \"usergroup\",","            \"attributes\": {","              \"name\": \"Usergroup - \" + Math.floor(Math.random() * 1000),","              \"permissions\": [\"manage_users\"]","            }","          }","        })","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 201)) {","        throw new Error(response);","      }","      json = response.json();","      pm.environment.set(\"usergroup_id\", json.data.id);","      console.log('SET usergroup_id: ' + pm.environment.get(\"usergroup_id\"));","      return pm.environment.get(\"usergroup_id\");","    });","  };","","  api.requireDset = function () {","    console.log('requireDset()');","","    // Check if usergroup ID is set","    if (pm.environment.get(\"dset_id\") && pm.environment.get(\"dset_id\") !== 'undefined') {","      console.log('SET dset_id: ' + pm.environment.get(\"dset_id\"));","      return pm.environment.get(\"dset_id\");","    }","","    return api.asyncRequest({","      // Retrieve a list of datasets and use first one","      url: pm.variables.get(\"base_url\") + '/v2/dsets',","      method: 'GET',","      header: {","        'Accept': 'application/json',","        'Content-Type': 'application/json',","        'Authorization': 'Bearer ' + pm.variables.get(\"token\")","      }","    }).then(function (response) {","      if (!pm.expect(response).to.have.property('code', 200)) {","        throw new Error(response);","      }","      json = response.json();","      if (!pm.expect(json.data).to.not.be.empty) {","        throw new Error(response);","      }","      pm.environment.set(\"dset_id\", json.data[0].id);","      console.log('SET dset_id: ' + pm.environment.get(\"dset_id\"));","      return pm.environment.get(\"dset_id\");","    });","  };","","  // Export everything","  return api;","};","","pm.globals.set('exivity', helpers.toString());"]}},{"listen":"test","script":{"id":"03e73c0f-4215-4670-9547-a4011195b742","type":"text/javascript","exec":[""]}}],"variable":[{"key":"component","value":"use"}]}